studium 0.10.1

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

Potentially problematic release.


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

Files changed (882) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +1982 -0
  3. data/bin/ask_exam_question +7 -0
  4. data/bin/check_description_of_these_lectures +7 -0
  5. data/bin/curriculum_module_displayer +7 -0
  6. data/bin/d10 +7 -0
  7. data/bin/d100 +7 -0
  8. data/bin/d15 +7 -0
  9. data/bin/d20 +7 -0
  10. data/bin/d25 +7 -0
  11. data/bin/d3 +7 -0
  12. data/bin/d30 +7 -0
  13. data/bin/d5 +7 -0
  14. data/bin/determine_curricula +7 -0
  15. data/bin/exam_registration_at +7 -0
  16. data/bin/exam_statistics +7 -0
  17. data/bin/exams_per_month +9 -0
  18. data/bin/finished_exams_at_this_university +7 -0
  19. data/bin/flashcards +7 -0
  20. data/bin/mandatory_continuous_assessment +7 -0
  21. data/bin/mandatory_upcoming_courses +7 -0
  22. data/bin/n_exam_questions_already_answered +16 -0
  23. data/bin/nquestions +7 -0
  24. data/bin/nsolved +7 -0
  25. data/bin/open_last_exam_question_asked_file +7 -0
  26. data/bin/passed_pr/303/274fungsimmanente_courses +7 -0
  27. data/bin/return_n_ects_from_this_file +7 -0
  28. data/bin/show_lectures_on_the_commandline +7 -0
  29. data/bin/show_themes +7 -0
  30. data/bin/solved +9 -0
  31. data/bin/solved_ects +7 -0
  32. data/bin/studienkennzahl +7 -0
  33. data/bin/studium +7 -0
  34. data/bin/studium_skeleton +7 -0
  35. data/bin/ufind +7 -0
  36. data/bin/upcoming_exams +7 -0
  37. data/bin/week_parser +7 -0
  38. data/doc/ECTS_CONSIDERATIONS.md +81 -0
  39. data/doc/HOW_TO_ADAPT_THIS_PROJECT.md +43 -0
  40. data/doc/HOW_TO_DETERMINE_WHICH_PART_IS_THE_QUESTION_AND_WHICH_PART_IS_THE_ANSWER.md +47 -0
  41. data/doc/README.gen +1965 -0
  42. data/doc/TODO_FOR_STUDIUM_GEM.md +113 -0
  43. data/doc/deprecated_components.md +24 -0
  44. data/doc/documentation_for_the_file_lecture_information.md +294 -0
  45. data/doc/elegant_colours.md +20 -0
  46. data/img/STUDIES.png +0 -0
  47. data/lib/studium.rb +5 -0
  48. data/lib/studium/autoinclude.rb +7 -0
  49. data/lib/studium/base/base.rb +84 -0
  50. data/lib/studium/base/cliner.rb +58 -0
  51. data/lib/studium/base/colours.rb +307 -0
  52. data/lib/studium/base/commandline_arguments.rb +64 -0
  53. data/lib/studium/base/constants.rb +34 -0
  54. data/lib/studium/base/curriculum.rb +329 -0
  55. data/lib/studium/base/directory_to_the_exam_topics.rb +23 -0
  56. data/lib/studium/base/editor.rb +28 -0
  57. data/lib/studium/base/encoding.rb +36 -0
  58. data/lib/studium/base/esystem.rb +23 -0
  59. data/lib/studium/base/minimal_prototype.rb +66 -0
  60. data/lib/studium/base/misc.rb +854 -0
  61. data/lib/studium/base/mode.rb +92 -0
  62. data/lib/studium/base/obtain.rb +145 -0
  63. data/lib/studium/base/opnn.rb +46 -0
  64. data/lib/studium/base/prototype.rb +92 -0
  65. data/lib/studium/base/readlines.rb +55 -0
  66. data/lib/studium/base/replace.rb +110 -0
  67. data/lib/studium/base/reset.rb +77 -0
  68. data/lib/studium/base/run.rb +17 -0
  69. data/lib/studium/base/src_dir_at_home.rb +20 -0
  70. data/lib/studium/base/time.rb +634 -0
  71. data/lib/studium/base/unicode.rb +95 -0
  72. data/lib/studium/base/word_wrap.rb +58 -0
  73. data/lib/studium/boku/README.md +4 -0
  74. data/lib/studium/boku/boku_biotechnology_all_master_lectures.rb +142 -0
  75. data/lib/studium/boku/boku_/303/266ffnungszeiten.rb +29 -0
  76. data/lib/studium/boku/show_three_pillars_of_these_lectures.rb +96 -0
  77. data/lib/studium/boku/three_pillars.rb +232 -0
  78. data/lib/studium/check_and_sanitize/README.md +11 -0
  79. data/lib/studium/check_and_sanitize/check_curriculum_for_correct_separation_of_bachelor_and_master.rb +149 -0
  80. data/lib/studium/check_and_sanitize/check_for_all_exam_topics_being_registered.rb +107 -0
  81. data/lib/studium/check_and_sanitize/check_for_existing_description_of_this_lecture.rb +197 -0
  82. data/lib/studium/check_and_sanitize/check_the_lecture_information_file.rb +171 -0
  83. data/lib/studium/check_and_sanitize/missing_priority_entry.rb +44 -0
  84. data/lib/studium/check_and_sanitize/sanitize_this_string_containing_the_lva_dates.rb +79 -0
  85. data/lib/studium/colours/colours.rb +570 -0
  86. data/lib/studium/colours/sfancy.rb +40 -0
  87. data/lib/studium/colours/sfile.rb +35 -0
  88. data/lib/studium/colours/simp.rb +38 -0
  89. data/lib/studium/colours/use_this_colour_for_exam_questions_and_exam_answers.rb +76 -0
  90. data/lib/studium/commandline/commandline.rb +25 -0
  91. data/lib/studium/commandline/constants.rb +16 -0
  92. data/lib/studium/commandline/help.rb +152 -0
  93. data/lib/studium/commandline/initialize.rb +27 -0
  94. data/lib/studium/commandline/menu.rb +760 -0
  95. data/lib/studium/commandline/misc.rb +707 -0
  96. data/lib/studium/commandline/reset.rb +24 -0
  97. data/lib/studium/commandline/run.rb +20 -0
  98. data/lib/studium/constants/boku_wien.rb +52 -0
  99. data/lib/studium/constants/constants.rb +25 -0
  100. data/lib/studium/constants/delay.rb +28 -0
  101. data/lib/studium/constants/editor.rb +28 -0
  102. data/lib/studium/constants/exam_topics.rb +183 -0
  103. data/lib/studium/constants/file_constants.rb +875 -0
  104. data/lib/studium/constants/image_constants.rb +216 -0
  105. data/lib/studium/constants/last_question_asked.rb +38 -0
  106. data/lib/studium/constants/lecture_types_that_are_mandatory_continuous_assessment.rb +47 -0
  107. data/lib/studium/constants/misc.rb +163 -0
  108. data/lib/studium/constants/namespace.rb +14 -0
  109. data/lib/studium/constants/newline.rb +14 -0
  110. data/lib/studium/constants/regexes.rb +35 -0
  111. data/lib/studium/constants/return_file_for_this_curriculum.rb +411 -0
  112. data/lib/studium/constants/roebe.rb +173 -0
  113. data/lib/studium/constants/time.rb +52 -0
  114. data/lib/studium/constants/tu_wien.rb +39 -0
  115. data/lib/studium/constants/uni_wien.rb +24 -0
  116. data/lib/studium/constants/unicode.rb +27 -0
  117. data/lib/studium/constants/week.rb +138 -0
  118. data/lib/studium/constants/www_constants.rb +23 -0
  119. data/lib/studium/curricula/curriculum.rb +199 -0
  120. data/lib/studium/curricula/curriculum_as_string.rb +279 -0
  121. data/lib/studium/curricula/curriculum_module_displayer/constants.rb +38 -0
  122. data/lib/studium/curricula/curriculum_module_displayer/curriculum_module_displayer.rb +417 -0
  123. data/lib/studium/curricula/curriculum_module_displayer/initialize.rb +25 -0
  124. data/lib/studium/curricula/curriculum_module_displayer/menu.rb +45 -0
  125. data/lib/studium/curricula/curriculum_module_displayer/reset.rb +77 -0
  126. data/lib/studium/curricula/curriculum_module_displayer/run.rb +20 -0
  127. data/lib/studium/curricula/curriculum_module_displayer/set_use_this_curriculum.rb +93 -0
  128. data/lib/studium/curricula/curriculum_module_displayer/show_and_report.rb +190 -0
  129. data/lib/studium/curricula/determine_curricula/constants.rb +16 -0
  130. data/lib/studium/curricula/determine_curricula/determine_curricula.rb +36 -0
  131. data/lib/studium/curricula/determine_curricula/help.rb +39 -0
  132. data/lib/studium/curricula/determine_curricula/initialize.rb +48 -0
  133. data/lib/studium/curricula/determine_curricula/menu.rb +138 -0
  134. data/lib/studium/curricula/determine_curricula/misc.rb +402 -0
  135. data/lib/studium/curricula/determine_curricula/report.rb +131 -0
  136. data/lib/studium/curricula/determine_curricula/reset.rb +62 -0
  137. data/lib/studium/curricula/determine_curricula/run.rb +19 -0
  138. data/lib/studium/curricula/determine_elective_courses_in_this_curriculum.rb +112 -0
  139. data/lib/studium/curricula/display_bachelor_curricula.rb +89 -0
  140. data/lib/studium/curricula/mitteilungsbl/303/244tter.rb +336 -0
  141. data/lib/studium/curricula/modules/display_on_the_commandline.rb +316 -0
  142. data/lib/studium/curricula/modules/return_n_ects_in_this_module.rb +74 -0
  143. data/lib/studium/curricula/n_percent_solved_in_this_curriculum.rb +75 -0
  144. data/lib/studium/curricula/random_curriculum_creator.rb +171 -0
  145. data/lib/studium/curricula/show_lectures_of_this_curriculum.rb +114 -0
  146. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/constants.rb +16 -0
  147. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/initialize.rb +27 -0
  148. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/menu.rb +35 -0
  149. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/misc.rb +242 -0
  150. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/report.rb +140 -0
  151. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/reset.rb +67 -0
  152. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/show_lectures_of_this_curriculum_id.rb +37 -0
  153. data/lib/studium/curricula/show_solved_percentage_among_the_registered_curricula.rb +87 -0
  154. data/lib/studium/ects/boku_ects_splitter.rb +127 -0
  155. data/lib/studium/ects/ects_parser.rb +179 -0
  156. data/lib/studium/ects/ects_per_university.rb +140 -0
  157. data/lib/studium/ects/ects_scanner.rb +141 -0
  158. data/lib/studium/ects/ects_to_university_parser.rb +148 -0
  159. data/lib/studium/ects/erledigt.rb +131 -0
  160. data/lib/studium/ects/last_entry_is_curriculum.rb +147 -0
  161. data/lib/studium/ects/n_ects_in_these_lectures.rb +185 -0
  162. data/lib/studium/ects/n_ects_points_in_mandatory_presence_courses.rb +50 -0
  163. data/lib/studium/ects/noch_zu_absolvieren.rb +172 -0
  164. data/lib/studium/ects/return_n_ects_from_this_file.rb +58 -0
  165. data/lib/studium/ects/return_n_ects_from_this_url.rb +202 -0
  166. data/lib/studium/ects/search_for_n_ects.rb +540 -0
  167. data/lib/studium/ects/show_completed_ects_in_all_curricula.rb +210 -0
  168. data/lib/studium/ects/show_passed_credits_per_curriculum.rb +254 -0
  169. data/lib/studium/ects/simple_total_ects_points.rb +143 -0
  170. data/lib/studium/ects/solved_ects/constants.rb +24 -0
  171. data/lib/studium/ects/solved_ects/reset.rb +54 -0
  172. data/lib/studium/ects/solved_ects/solved_ects.rb +325 -0
  173. data/lib/studium/ects/solved_ects_per_university/reset.rb +25 -0
  174. data/lib/studium/ects/solved_ects_per_university/solved_ects_per_university.rb +106 -0
  175. data/lib/studium/ects/still_missing.rb +133 -0
  176. data/lib/studium/ects/sum_of_ects.rb +150 -0
  177. data/lib/studium/encoding/encoding.rb +150 -0
  178. data/lib/studium/exam_topics/RNAi_siRNA_and_miRNA +79 -0
  179. data/lib/studium/exam_topics/abfall_als_ressource +86 -0
  180. data/lib/studium/exam_topics/advanced_biochemistry +762 -0
  181. data/lib/studium/exam_topics/advanced_biotechnology +192 -0
  182. data/lib/studium/exam_topics/advanced_cellbiology +25 -0
  183. data/lib/studium/exam_topics/advanced_chemistry +453 -0
  184. data/lib/studium/exam_topics/advanced_microbiology +44 -0
  185. data/lib/studium/exam_topics/advanced_topics_in_plant_sciences +51 -0
  186. data/lib/studium/exam_topics/advanced_virology +52 -0
  187. data/lib/studium/exam_topics/ageing +101 -0
  188. data/lib/studium/exam_topics/agrar_ecology +61 -0
  189. data/lib/studium/exam_topics/agrarmarkt +70 -0
  190. data/lib/studium/exam_topics/agrarphysik +35 -0
  191. data/lib/studium/exam_topics/alcohols +29 -0
  192. data/lib/studium/exam_topics/algorithms +49 -0
  193. data/lib/studium/exam_topics/allergie +73 -0
  194. data/lib/studium/exam_topics/allgemeine_genetik +1006 -0
  195. data/lib/studium/exam_topics/allgemeine_mikrobiologie +855 -0
  196. data/lib/studium/exam_topics/aminoacids +417 -0
  197. data/lib/studium/exam_topics/analytische_chemie_1 +131 -0
  198. data/lib/studium/exam_topics/analytische_chemie_2 +31 -0
  199. data/lib/studium/exam_topics/anatomie +248 -0
  200. data/lib/studium/exam_topics/anorganische_chemie +289 -0
  201. data/lib/studium/exam_topics/anthropologie +115 -0
  202. data/lib/studium/exam_topics/antibodies_and_antigens +747 -0
  203. data/lib/studium/exam_topics/apoptosis +35 -0
  204. data/lib/studium/exam_topics/archaea +41 -0
  205. data/lib/studium/exam_topics/architecture +8 -0
  206. data/lib/studium/exam_topics/artificial_intelligence +81 -0
  207. data/lib/studium/exam_topics/audio +10 -0
  208. data/lib/studium/exam_topics/bacteriophages +224 -0
  209. data/lib/studium/exam_topics/basic_biochemistry +1008 -0
  210. data/lib/studium/exam_topics/basic_biotechnology +1011 -0
  211. data/lib/studium/exam_topics/basic_chemistry +1007 -0
  212. data/lib/studium/exam_topics/basic_virology +955 -0
  213. data/lib/studium/exam_topics/bauwesen +6 -0
  214. data/lib/studium/exam_topics/betriebssysteme +125 -0
  215. data/lib/studium/exam_topics/betriebswirtschaftslehre +29 -0
  216. data/lib/studium/exam_topics/bioanalytik_und_biosensoren +381 -0
  217. data/lib/studium/exam_topics/biochips +78 -0
  218. data/lib/studium/exam_topics/bioelektrochemie +56 -0
  219. data/lib/studium/exam_topics/biofilms +22 -0
  220. data/lib/studium/exam_topics/bioinformatics +475 -0
  221. data/lib/studium/exam_topics/biological_therapeutics +152 -0
  222. data/lib/studium/exam_topics/biologie +134 -0
  223. data/lib/studium/exam_topics/biomarkers +106 -0
  224. data/lib/studium/exam_topics/biomaterials +46 -0
  225. data/lib/studium/exam_topics/biomembranes +6 -0
  226. data/lib/studium/exam_topics/bionik +65 -0
  227. data/lib/studium/exam_topics/biophysik +34 -0
  228. data/lib/studium/exam_topics/biopolymers +10 -0
  229. data/lib/studium/exam_topics/bioprozesstechnik +139 -0
  230. data/lib/studium/exam_topics/bioressourcenmanagement +78 -0
  231. data/lib/studium/exam_topics/bodenkunde +345 -0
  232. data/lib/studium/exam_topics/bodenmikrobiologie +40 -0
  233. data/lib/studium/exam_topics/cancerbiology +441 -0
  234. data/lib/studium/exam_topics/cell_cultures +154 -0
  235. data/lib/studium/exam_topics/cellbiology +962 -0
  236. data/lib/studium/exam_topics/cellular_transport_and_protein_secretion +27 -0
  237. data/lib/studium/exam_topics/chemische_technologie_anorganischer_stoffe +208 -0
  238. data/lib/studium/exam_topics/chemisches_labor +59 -0
  239. data/lib/studium/exam_topics/chemotaxis_and_motility_in_prokaryotes +74 -0
  240. data/lib/studium/exam_topics/citric_acid_cycle +70 -0
  241. data/lib/studium/exam_topics/clinical_microbiology +486 -0
  242. data/lib/studium/exam_topics/computer_graphics +5 -0
  243. data/lib/studium/exam_topics/computer_science +269 -0
  244. data/lib/studium/exam_topics/crispr +25 -0
  245. data/lib/studium/exam_topics/cyanobacteria +37 -0
  246. data/lib/studium/exam_topics/cytogenetics_and_chromosome_biology +506 -0
  247. data/lib/studium/exam_topics/databases_and_sql +105 -0
  248. data/lib/studium/exam_topics/dna_mutation_and_dna_repair +33 -0
  249. data/lib/studium/exam_topics/dna_replication +53 -0
  250. data/lib/studium/exam_topics/ecogenetics +27 -0
  251. data/lib/studium/exam_topics/ecological_agriculture +12 -0
  252. data/lib/studium/exam_topics/ecology +313 -0
  253. data/lib/studium/exam_topics/economy +210 -0
  254. data/lib/studium/exam_topics/elektronenmikroskopie +353 -0
  255. data/lib/studium/exam_topics/elektrophorese +88 -0
  256. data/lib/studium/exam_topics/elektrotechnik +8 -0
  257. data/lib/studium/exam_topics/elisa +54 -0
  258. data/lib/studium/exam_topics/embryologie_und_entwicklung +541 -0
  259. data/lib/studium/exam_topics/endospores_and_spores +92 -0
  260. data/lib/studium/exam_topics/enzymes_and_cofactors +327 -0
  261. data/lib/studium/exam_topics/epigenetik +177 -0
  262. data/lib/studium/exam_topics/ethik +125 -0
  263. data/lib/studium/exam_topics/evolution_and_evolutionary_genetics +323 -0
  264. data/lib/studium/exam_topics/excel +7 -0
  265. data/lib/studium/exam_topics/fish +19 -0
  266. data/lib/studium/exam_topics/fluorescence_microscopy +7 -0
  267. data/lib/studium/exam_topics/food_microbiology_and_food_biotechnology +17 -0
  268. data/lib/studium/exam_topics/forensik +11 -0
  269. data/lib/studium/exam_topics/forstwirtschaft +52 -0
  270. data/lib/studium/exam_topics/fortgeschrittene_genetik +429 -0
  271. data/lib/studium/exam_topics/fortgeschrittene_gentechnik +189 -0
  272. data/lib/studium/exam_topics/fortgeschrittene_physik +6 -0
  273. data/lib/studium/exam_topics/fungi +78 -0
  274. data/lib/studium/exam_topics/genetische_krankheiten +150 -0
  275. data/lib/studium/exam_topics/genexpression +1008 -0
  276. data/lib/studium/exam_topics/genomics_and_metagenomics +205 -0
  277. data/lib/studium/exam_topics/gentechnik_und_praktische_biochemie +863 -0
  278. data/lib/studium/exam_topics/geochemistry +66 -0
  279. data/lib/studium/exam_topics/geography +5 -0
  280. data/lib/studium/exam_topics/geologie_und_mineralogie +610 -0
  281. data/lib/studium/exam_topics/geschichte +94 -0
  282. data/lib/studium/exam_topics/gluconeogenesis +34 -0
  283. data/lib/studium/exam_topics/glycolysis +95 -0
  284. data/lib/studium/exam_topics/glykomik +42 -0
  285. data/lib/studium/exam_topics/glyoxylatzyklus +23 -0
  286. data/lib/studium/exam_topics/grassland_cultivation +32 -0
  287. data/lib/studium/exam_topics/hormone +122 -0
  288. data/lib/studium/exam_topics/html +7 -0
  289. data/lib/studium/exam_topics/human_ecology +8 -0
  290. data/lib/studium/exam_topics/hygiene +191 -0
  291. data/lib/studium/exam_topics/imaging_and_microscopy +224 -0
  292. data/lib/studium/exam_topics/immunanalytik +88 -0
  293. data/lib/studium/exam_topics/immunologie +888 -0
  294. data/lib/studium/exam_topics/informatik +95 -0
  295. data/lib/studium/exam_topics/innate_immunity +20 -0
  296. data/lib/studium/exam_topics/insekten +30 -0
  297. data/lib/studium/exam_topics/insulin_and_diabetes +55 -0
  298. data/lib/studium/exam_topics/java +440 -0
  299. data/lib/studium/exam_topics/javascript +10 -0
  300. data/lib/studium/exam_topics/klima +6 -0
  301. data/lib/studium/exam_topics/landtechnik +27 -0
  302. data/lib/studium/exam_topics/lebensmittel +206 -0
  303. data/lib/studium/exam_topics/lebensmitteltechnologie +16 -0
  304. data/lib/studium/exam_topics/linux +5 -0
  305. data/lib/studium/exam_topics/lipids +95 -0
  306. data/lib/studium/exam_topics/macroeconomics +39 -0
  307. data/lib/studium/exam_topics/mathematics +175 -0
  308. data/lib/studium/exam_topics/medizin_und_biomedizinische_technik +250 -0
  309. data/lib/studium/exam_topics/medizinische_chemie_und_pharmazie +397 -0
  310. data/lib/studium/exam_topics/messtechnik_und_regeltechnik +104 -0
  311. data/lib/studium/exam_topics/metabolismus +433 -0
  312. data/lib/studium/exam_topics/microbial_ecology +35 -0
  313. data/lib/studium/exam_topics/mikrobielle_lebensgemeinschaften +34 -0
  314. data/lib/studium/exam_topics/mikrobielle_physiologie +153 -0
  315. data/lib/studium/exam_topics/mixed +289 -0
  316. data/lib/studium/exam_topics/molecular_biology_of_plants +235 -0
  317. data/lib/studium/exam_topics/molekulare_medizin +129 -0
  318. data/lib/studium/exam_topics/nanotechnologie +303 -0
  319. data/lib/studium/exam_topics/nature_conservation_and_biodiversity +165 -0
  320. data/lib/studium/exam_topics/naturstoffe +9 -0
  321. data/lib/studium/exam_topics/netzwerke +32 -0
  322. data/lib/studium/exam_topics/neurobiology +266 -0
  323. data/lib/studium/exam_topics/nucleotide_sequencing +30 -0
  324. data/lib/studium/exam_topics/object_oriented_modeling +14 -0
  325. data/lib/studium/exam_topics/obstbau +234 -0
  326. data/lib/studium/exam_topics/organische_chemie +1007 -0
  327. data/lib/studium/exam_topics/organische_chemie_2 +72 -0
  328. data/lib/studium/exam_topics/paleobiology +33 -0
  329. data/lib/studium/exam_topics/parasitic_diseases_and_molecular_infection_biology +335 -0
  330. data/lib/studium/exam_topics/patent_law +55 -0
  331. data/lib/studium/exam_topics/pathologie +713 -0
  332. data/lib/studium/exam_topics/pcr +133 -0
  333. data/lib/studium/exam_topics/peroxisomes_glycosomes_and_lysosomes +54 -0
  334. data/lib/studium/exam_topics/pflanzenanatomie +240 -0
  335. data/lib/studium/exam_topics/pflanzenbau +24 -0
  336. data/lib/studium/exam_topics/pflanzenschutz +35 -0
  337. data/lib/studium/exam_topics/pflanzenwissenschaften +1009 -0
  338. data/lib/studium/exam_topics/pharmaceutical_biotechnology +250 -0
  339. data/lib/studium/exam_topics/physik +338 -0
  340. data/lib/studium/exam_topics/physikalische_chemie +85 -0
  341. data/lib/studium/exam_topics/physiology_and_histology +485 -0
  342. data/lib/studium/exam_topics/phytochemie +33 -0
  343. data/lib/studium/exam_topics/plant_biotechnology +127 -0
  344. data/lib/studium/exam_topics/plant_breeding +64 -0
  345. data/lib/studium/exam_topics/plant_development +50 -0
  346. data/lib/studium/exam_topics/populationsgenetik +136 -0
  347. data/lib/studium/exam_topics/posttranslationale_modifikation_von_proteinen +186 -0
  348. data/lib/studium/exam_topics/projektmanagement +218 -0
  349. data/lib/studium/exam_topics/prokaryote_genetics +470 -0
  350. data/lib/studium/exam_topics/proteomik +38 -0
  351. data/lib/studium/exam_topics/prozesstechnik +95 -0
  352. data/lib/studium/exam_topics/psychologie +9 -0
  353. data/lib/studium/exam_topics/python +350 -0
  354. data/lib/studium/exam_topics/quality_management +241 -0
  355. data/lib/studium/exam_topics/rechtsgrundlagen +115 -0
  356. data/lib/studium/exam_topics/research_topics_in_immunobiology +42 -0
  357. data/lib/studium/exam_topics/rna_and_dna +362 -0
  358. data/lib/studium/exam_topics/rna_seq +11 -0
  359. data/lib/studium/exam_topics/ruby +131 -0
  360. data/lib/studium/exam_topics/ruby_on_rails +62 -0
  361. data/lib/studium/exam_topics/scientific_writing_and_publishing +38 -0
  362. data/lib/studium/exam_topics/semisynthese_von_proteinen_und_nukleotiden +120 -0
  363. data/lib/studium/exam_topics/sexualbiologie +59 -0
  364. data/lib/studium/exam_topics/signal_transduction_and_laser_systems +136 -0
  365. data/lib/studium/exam_topics/splicing_exons_and_introns +57 -0
  366. data/lib/studium/exam_topics/statistik +202 -0
  367. data/lib/studium/exam_topics/stemcells +87 -0
  368. data/lib/studium/exam_topics/structural_bioinformatics +54 -0
  369. data/lib/studium/exam_topics/strukturbiologie +319 -0
  370. data/lib/studium/exam_topics/system_biology_and_synthetic_biology +87 -0
  371. data/lib/studium/exam_topics/systematische_zoologie +430 -0
  372. data/lib/studium/exam_topics/technical_ecology +144 -0
  373. data/lib/studium/exam_topics/technische_chemie +194 -0
  374. data/lib/studium/exam_topics/technische_grundlagen_der_informatik +22 -0
  375. data/lib/studium/exam_topics/technische_mikrobiologie +403 -0
  376. data/lib/studium/exam_topics/technisches_zeichnen +5 -0
  377. data/lib/studium/exam_topics/the_bacterial_cell_wall +86 -0
  378. data/lib/studium/exam_topics/the_c_plus_plus_programming_language +488 -0
  379. data/lib/studium/exam_topics/the_c_programming_language +128 -0
  380. data/lib/studium/exam_topics/the_cellcycle +65 -0
  381. data/lib/studium/exam_topics/the_european_union +119 -0
  382. data/lib/studium/exam_topics/the_interferon_system +32 -0
  383. data/lib/studium/exam_topics/the_microbiome +163 -0
  384. data/lib/studium/exam_topics/the_universe +6 -0
  385. data/lib/studium/exam_topics/theoretische_chemie +5 -0
  386. data/lib/studium/exam_topics/theoretische_informatik +157 -0
  387. data/lib/studium/exam_topics/tierzucht +94 -0
  388. data/lib/studium/exam_topics/toxikologie +403 -0
  389. data/lib/studium/exam_topics/transcription +26 -0
  390. data/lib/studium/exam_topics/translation_ribosomes_and_translational_control +138 -0
  391. data/lib/studium/exam_topics/umweltbiotechnologie +58 -0
  392. data/lib/studium/exam_topics/umweltchemie +233 -0
  393. data/lib/studium/exam_topics/urbanism_and_traffic +19 -0
  394. data/lib/studium/exam_topics/vaccines_and_vaccination +234 -0
  395. data/lib/studium/exam_topics/vectors_and_gene_therapy +237 -0
  396. data/lib/studium/exam_topics/verfahrenstechnik +32 -0
  397. data/lib/studium/exam_topics/veterinary_medicine +10 -0
  398. data/lib/studium/exam_topics/vitamine +19 -0
  399. data/lib/studium/exam_topics/wasserkunde +141 -0
  400. data/lib/studium/exam_topics/weinbau +59 -0
  401. data/lib/studium/exam_topics/wissenschaft +17 -0
  402. data/lib/studium/exam_topics/yeast +97 -0
  403. data/lib/studium/exam_topics/zoologie +329 -0
  404. data/lib/studium/exams/afterburn.rb +264 -0
  405. data/lib/studium/exams/ask_exam_from_the_upcoming_exams_pool.rb +158 -0
  406. data/lib/studium/exams/ask_exam_question/answer.rb +106 -0
  407. data/lib/studium/exams/ask_exam_question/ask_exam_question.rb +135 -0
  408. data/lib/studium/exams/ask_exam_question/constants.rb +74 -0
  409. data/lib/studium/exams/ask_exam_question/delay.rb +101 -0
  410. data/lib/studium/exams/ask_exam_question/help.rb +72 -0
  411. data/lib/studium/exams/ask_exam_question/initialize.rb +70 -0
  412. data/lib/studium/exams/ask_exam_question/menu.rb +382 -0
  413. data/lib/studium/exams/ask_exam_question/misc.rb +938 -0
  414. data/lib/studium/exams/ask_exam_question/question.rb +77 -0
  415. data/lib/studium/exams/ask_exam_question/reset.rb +103 -0
  416. data/lib/studium/exams/ask_exam_question/run.rb +49 -0
  417. data/lib/studium/exams/ask_exam_topic_question.rb +120 -0
  418. data/lib/studium/exams/ask_question_from_alias.rb +151 -0
  419. data/lib/studium/exams/ask_question_from_any_of_the_still_missing_lectures.rb +133 -0
  420. data/lib/studium/exams/ask_question_from_grouped_themes.rb +141 -0
  421. data/lib/studium/exams/ask_question_from_last_topic.rb +93 -0
  422. data/lib/studium/exams/ask_random_question.rb +190 -0
  423. data/lib/studium/exams/autoinclude.rb +7 -0
  424. data/lib/studium/exams/class.rb +127 -0
  425. data/lib/studium/exams/csv/create_csv_passed_exams_file.rb +225 -0
  426. data/lib/studium/exams/cycle.rb +283 -0
  427. data/lib/studium/exams/dataset.rb +90 -0
  428. data/lib/studium/exams/exam_registration_at/constants.rb +49 -0
  429. data/lib/studium/exams/exam_registration_at/exam_registration_at.rb +254 -0
  430. data/lib/studium/exams/exam_registration_at/help.rb +46 -0
  431. data/lib/studium/exams/exam_registration_at/menu.rb +81 -0
  432. data/lib/studium/exams/exam_registration_at/report.rb +108 -0
  433. data/lib/studium/exams/exam_registration_at/reset.rb +49 -0
  434. data/lib/studium/exams/exam_statistics_from_this_file/exam_statistics_from_this_file.rb +127 -0
  435. data/lib/studium/exams/exam_topics.rb +202 -0
  436. data/lib/studium/exams/exams.rb +18 -0
  437. data/lib/studium/exams/exams_per_month/colours.rb +81 -0
  438. data/lib/studium/exams/exams_per_month/constants.rb +69 -0
  439. data/lib/studium/exams/exams_per_month/dataset.rb +64 -0
  440. data/lib/studium/exams/exams_per_month/exams_per_month.rb +291 -0
  441. data/lib/studium/exams/exams_per_month/help.rb +72 -0
  442. data/lib/studium/exams/exams_per_month/initialize.rb +39 -0
  443. data/lib/studium/exams/exams_per_month/menu.rb +258 -0
  444. data/lib/studium/exams/exams_per_month/open.rb +139 -0
  445. data/lib/studium/exams/exams_per_month/requires.rb +8 -0
  446. data/lib/studium/exams/exams_per_month/reset.rb +115 -0
  447. data/lib/studium/exams/exams_per_month/run.rb +18 -0
  448. data/lib/studium/exams/exams_per_month/sanitize.rb +129 -0
  449. data/lib/studium/exams/exams_per_month/show_and_report.rb +1281 -0
  450. data/lib/studium/exams/exams_this_week.rb +179 -0
  451. data/lib/studium/exams/fix_exam_dates.rb +129 -0
  452. data/lib/studium/exams/last_exams/last_exams.rb +381 -0
  453. data/lib/studium/exams/lectures_without_exam_entry.rb +145 -0
  454. data/lib/studium/exams/mandatory_continuous_assessment/compare.rb +144 -0
  455. data/lib/studium/exams/mandatory_continuous_assessment/constants.rb +18 -0
  456. data/lib/studium/exams/mandatory_continuous_assessment/help.rb +92 -0
  457. data/lib/studium/exams/mandatory_continuous_assessment/initialize.rb +46 -0
  458. data/lib/studium/exams/mandatory_continuous_assessment/mandatory_continuous_assessment.rb +1115 -0
  459. data/lib/studium/exams/mandatory_continuous_assessment/menu.rb +114 -0
  460. data/lib/studium/exams/mandatory_continuous_assessment/misc.rb +61 -0
  461. data/lib/studium/exams/mandatory_continuous_assessment/reset.rb +85 -0
  462. data/lib/studium/exams/mandatory_continuous_assessment/run.rb +33 -0
  463. data/lib/studium/exams/mandatory_continuous_assessment/set_title_of_the_curriculum.rb +181 -0
  464. data/lib/studium/exams/mandatory_continuous_assessment/show_and_report.rb +147 -0
  465. data/lib/studium/exams/move_the_last_exam_question_to_the_top_of_the_file/move_the_last_exam_question_to_the_top_of_the_file.rb +119 -0
  466. data/lib/studium/exams/n_exams_in_these_topics.rb +408 -0
  467. data/lib/studium/exams/new_questions_per_year.rb +153 -0
  468. data/lib/studium/exams/next_exam.rb +111 -0
  469. data/lib/studium/exams/next_exams.rb +385 -0
  470. data/lib/studium/exams/open_exam_associated_url.rb +158 -0
  471. data/lib/studium/exams/open_last_exam_question_asked_file/constants.rb +20 -0
  472. data/lib/studium/exams/open_last_exam_question_asked_file/initialize.rb +29 -0
  473. data/lib/studium/exams/open_last_exam_question_asked_file/open_last_exam_question_asked_file.rb +112 -0
  474. data/lib/studium/exams/passed_exams/passed_exams.rb +46 -0
  475. data/lib/studium/exams/pruefung.rb +288 -0
  476. data/lib/studium/exams/push_solved_questions_on_top.rb +188 -0
  477. data/lib/studium/exams/question_answer/question_answer.rb +842 -0
  478. data/lib/studium/exams/questions_solved_from_day_to_day.rb +353 -0
  479. data/lib/studium/exams/repeat_last_question.rb +78 -0
  480. data/lib/studium/exams/show_all_passed_exams_of_this_university.rb +260 -0
  481. data/lib/studium/exams/show_backlog_of_exams.rb +125 -0
  482. data/lib/studium/exams/show_next_exams_for.rb +141 -0
  483. data/lib/studium/exams/show_themes/constants.rb +33 -0
  484. data/lib/studium/exams/show_themes/menu.rb +61 -0
  485. data/lib/studium/exams/show_themes/misc.rb +536 -0
  486. data/lib/studium/exams/show_themes/reset.rb +64 -0
  487. data/lib/studium/exams/show_themes/show_themes.rb +27 -0
  488. data/lib/studium/exams/show_upcoming_exams/consider_autogenerating_exam_aliases.rb +170 -0
  489. data/lib/studium/exams/show_upcoming_exams/constants.rb +82 -0
  490. data/lib/studium/exams/show_upcoming_exams/help.rb +33 -0
  491. data/lib/studium/exams/show_upcoming_exams/initialize.rb +71 -0
  492. data/lib/studium/exams/show_upcoming_exams/menu.rb +53 -0
  493. data/lib/studium/exams/show_upcoming_exams/report.rb +195 -0
  494. data/lib/studium/exams/show_upcoming_exams/reset.rb +38 -0
  495. data/lib/studium/exams/show_upcoming_exams/run.rb +20 -0
  496. data/lib/studium/exams/show_upcoming_exams/show_upcoming_exams.rb +494 -0
  497. data/lib/studium/exams/solve_all_questions_from_this_topic.rb +122 -0
  498. data/lib/studium/exams/solved/constants.rb +37 -0
  499. data/lib/studium/exams/solved/help.rb +23 -0
  500. data/lib/studium/exams/solved/menu.rb +35 -0
  501. data/lib/studium/exams/solved/reset.rb +30 -0
  502. data/lib/studium/exams/solved/solved.rb +306 -0
  503. data/lib/studium/exams/steop.rb +99 -0
  504. data/lib/studium/exams/unsolve_all_questions_from_this_topic.rb +170 -0
  505. data/lib/studium/exams/upcoming_exams/constants.rb +20 -0
  506. data/lib/studium/exams/upcoming_exams/help.rb +38 -0
  507. data/lib/studium/exams/upcoming_exams/initialize.rb +27 -0
  508. data/lib/studium/exams/upcoming_exams/menu.rb +79 -0
  509. data/lib/studium/exams/upcoming_exams/misc.rb +360 -0
  510. data/lib/studium/exams/upcoming_exams/reset.rb +37 -0
  511. data/lib/studium/exams/upcoming_exams/run.rb +25 -0
  512. data/lib/studium/exams/upcoming_exams/upcoming_exams.rb +32 -0
  513. data/lib/studium/exams/upcoming_exams_at_the_boku/constants.rb +23 -0
  514. data/lib/studium/exams/upcoming_exams_at_the_boku/html.rb +64 -0
  515. data/lib/studium/exams/upcoming_exams_at_the_boku/upcoming_exams_at_the_boku.rb +194 -0
  516. data/lib/studium/exams/upcoming_exams_dataset.rb +251 -0
  517. data/lib/studium/exams/upload_exam_topics.rb +357 -0
  518. data/lib/studium/flashcards/flashcards.rb +95 -0
  519. data/lib/studium/graphviz/README.md +4 -0
  520. data/lib/studium/graphviz/bachelor_vector_based_strategies.dot +160 -0
  521. data/lib/studium/graphviz/master_vector_based_strategies.dot +46 -0
  522. data/lib/studium/gui/gtk2/constants.rb +52 -0
  523. data/lib/studium/gui/gtk2/exam_card.rb +199 -0
  524. data/lib/studium/gui/gtk2/flip_card.rb +8 -0
  525. data/lib/studium/gui/gtk2/frame.rb +319 -0
  526. data/lib/studium/gui/gtk2/main_box.rb +188 -0
  527. data/lib/studium/gui/gtk2/misc.rb +99 -0
  528. data/lib/studium/gui/gtk2/module_methods.rb +58 -0
  529. data/lib/studium/gui/gtk2/require_gtk_files.rb +25 -0
  530. data/lib/studium/gui/gtk2/run.rb +47 -0
  531. data/lib/studium/gui/gtk2/show_curriculum_entries.rb +186 -0
  532. data/lib/studium/gui/gtk2/simple_widget_question_answer.rb +185 -0
  533. data/lib/studium/gui/gtk2/vbox.rb +748 -0
  534. data/lib/studium/gui/gtk3/README.md +1 -0
  535. data/lib/studium/gui/gtk3/studium_panel.rb +54 -0
  536. data/lib/studium/lectures/show_lectures_on_the_commandline/constants.rb +22 -0
  537. data/lib/studium/lectures/show_lectures_on_the_commandline/determine.rb +630 -0
  538. data/lib/studium/lectures/show_lectures_on_the_commandline/help.rb +44 -0
  539. data/lib/studium/lectures/show_lectures_on_the_commandline/html.rb +599 -0
  540. data/lib/studium/lectures/show_lectures_on_the_commandline/initialize.rb +53 -0
  541. data/lib/studium/lectures/show_lectures_on_the_commandline/konsole.rb +32 -0
  542. data/lib/studium/lectures/show_lectures_on_the_commandline/menu.rb +466 -0
  543. data/lib/studium/lectures/show_lectures_on_the_commandline/misc.rb +598 -0
  544. data/lib/studium/lectures/show_lectures_on_the_commandline/reset.rb +120 -0
  545. data/lib/studium/lectures/show_lectures_on_the_commandline/run.rb +44 -0
  546. data/lib/studium/lectures/show_lectures_on_the_commandline/show.rb +106 -0
  547. data/lib/studium/lectures/show_lectures_on_the_commandline/show_lectures_on_the_commandline.rb +491 -0
  548. data/lib/studium/lectures/show_lectures_on_the_commandline/sorted_individual_curricula.rb +117 -0
  549. data/lib/studium/logging/README.md +2 -0
  550. data/lib/studium/logging/ensure_that_the_log_directory_exists.rb +47 -0
  551. data/lib/studium/logging/html_log_directory.rb +35 -0
  552. data/lib/studium/logging/log_directory.rb +100 -0
  553. data/lib/studium/logging/store_last_question_asked_into_file.rb +138 -0
  554. data/lib/studium/misc/return_remote_homepage_of_this_lecture.rb +8661 -0
  555. data/lib/studium/misc/return_remote_moodle_link_of_this_lecture.rb +1343 -0
  556. data/lib/studium/parsers/README.md +2 -0
  557. data/lib/studium/parsers/custom_exam_results_parser.rb +208 -0
  558. data/lib/studium/parsers/parse_lva_dates.rb +190 -0
  559. data/lib/studium/pdf/README.md +2 -0
  560. data/lib/studium/pdf/create_pdf_file_for_this_exam_topic.rb +277 -0
  561. data/lib/studium/project/project.rb +80 -0
  562. data/lib/studium/requires/common_popular_requires.rb +37 -0
  563. data/lib/studium/requires/commonly_used_requires.rb +13 -0
  564. data/lib/studium/requires/require_class_exams_solved.rb +7 -0
  565. data/lib/studium/requires/require_ects_scripts.rb +25 -0
  566. data/lib/studium/requires/require_encoding.rb +7 -0
  567. data/lib/studium/requires/require_the_exam_scripts.rb +37 -0
  568. data/lib/studium/requires/require_the_studium_constants.rb +14 -0
  569. data/lib/studium/requires/require_the_studium_project.rb +47 -0
  570. data/lib/studium/requires/require_the_utility_scripts.rb +26 -0
  571. data/lib/studium/requires/require_toplevel_methods.rb +26 -0
  572. data/lib/studium/requires/require_upcoming_exams.rb +7 -0
  573. data/lib/studium/requires/require_yaml.rb +7 -0
  574. data/lib/studium/requires/with_GUI.rb +12 -0
  575. data/lib/studium/requires/www_mode.rb +17 -0
  576. data/lib/studium/sinatra/app.rb +225 -0
  577. data/lib/studium/sinatra/misc.rb +111 -0
  578. data/lib/studium/statistics/README.md +4 -0
  579. data/lib/studium/statistics/best_exam_months.rb +81 -0
  580. data/lib/studium/statistics/curriculum_comparer.rb +344 -0
  581. data/lib/studium/statistics/determine_exam_statistics_from_this_file.rb +140 -0
  582. data/lib/studium/statistics/max_stats.rb +171 -0
  583. data/lib/studium/statistics/report_how_many_ects_points_per_curriculum_were_completed.rb +172 -0
  584. data/lib/studium/statistics/report_how_many_exam_questions_were_answered.rb +478 -0
  585. data/lib/studium/statistics/show_exam_statistics.rb +60 -0
  586. data/lib/studium/statistics/top_stats.rb +122 -0
  587. data/lib/studium/steop/README.md +4 -0
  588. data/lib/studium/steop/show_all_steop_lectures.rb +101 -0
  589. data/lib/studium/steop/steop_lectures_in_this_curriculum.rb +291 -0
  590. data/lib/studium/steop/steop_lva_dates.rb +102 -0
  591. data/lib/studium/toplevel_methods/all_passed_exams.rb +35 -0
  592. data/lib/studium/toplevel_methods/already_solved_this_lecture.rb +98 -0
  593. data/lib/studium/toplevel_methods/available_curricula.rb +71 -0
  594. data/lib/studium/toplevel_methods/available_topics.rb +145 -0
  595. data/lib/studium/toplevel_methods/average_grade.rb +141 -0
  596. data/lib/studium/toplevel_methods/calculate_pr/303/274fungsimmanente_lectures_from_this_file.rb +55 -0
  597. data/lib/studium/toplevel_methods/cd.rb +25 -0
  598. data/lib/studium/toplevel_methods/cd_stud.rb +134 -0
  599. data/lib/studium/toplevel_methods/copy_the_last_backup_of_file_lecture_information.rb +27 -0
  600. data/lib/studium/toplevel_methods/determine_local_directory_of_this_lecture.rb +72 -0
  601. data/lib/studium/toplevel_methods/does_this_course_require_mandatory_presence.rb +44 -0
  602. data/lib/studium/toplevel_methods/download.rb +157 -0
  603. data/lib/studium/toplevel_methods/e.rb +16 -0
  604. data/lib/studium/toplevel_methods/ects_from_lectures.rb +251 -0
  605. data/lib/studium/toplevel_methods/editor.rb +64 -0
  606. data/lib/studium/toplevel_methods/esystem.rb +22 -0
  607. data/lib/studium/toplevel_methods/exams_dataset.rb +45 -0
  608. data/lib/studium/toplevel_methods/filter_away_invalid_questions.rb +77 -0
  609. data/lib/studium/toplevel_methods/find_exam_topic_and_exam_title.rb +2771 -0
  610. data/lib/studium/toplevel_methods/from_curriculum_id_to_university.rb +47 -0
  611. data/lib/studium/toplevel_methods/frozen.rb +32 -0
  612. data/lib/studium/toplevel_methods/handle_archive_of_the_exam_questions.rb +136 -0
  613. data/lib/studium/toplevel_methods/has_a_bachelor_or_master_curriculum.rb +84 -0
  614. data/lib/studium/toplevel_methods/has_this_lecture_been_already_passed_but_the_id_was_changed_lateron.rb +41 -0
  615. data/lib/studium/toplevel_methods/has_this_module_been_completed.rb +206 -0
  616. data/lib/studium/toplevel_methods/install_the_project_on_the_given_hostsystem.rb +32 -0
  617. data/lib/studium/toplevel_methods/is_on_roebe.rb +26 -0
  618. data/lib/studium/toplevel_methods/is_this_exam_topic_included.rb +46 -0
  619. data/lib/studium/toplevel_methods/is_this_homepage_registered.rb +31 -0
  620. data/lib/studium/toplevel_methods/is_this_lecture_a_practical_course.rb +100 -0
  621. data/lib/studium/toplevel_methods/is_this_lecture_part_of_the_vector_curriculum.rb +110 -0
  622. data/lib/studium/toplevel_methods/is_this_lecture_registered_in_upcoming_exams.rb +43 -0
  623. data/lib/studium/toplevel_methods/lecture_information.rb +101 -0
  624. data/lib/studium/toplevel_methods/lectures_without_attribution_to_any_curriculum.rb +42 -0
  625. data/lib/studium/toplevel_methods/lva_numbers.rb +339 -0
  626. data/lib/studium/toplevel_methods/main_dataset.rb +73 -0
  627. data/lib/studium/toplevel_methods/map_curriculum_number_to_curriculum_name.rb +97 -0
  628. data/lib/studium/toplevel_methods/methods_related_to_curricula.rb +47 -0
  629. data/lib/studium/toplevel_methods/methods_related_to_files.rb +197 -0
  630. data/lib/studium/toplevel_methods/mkdir.rb +25 -0
  631. data/lib/studium/toplevel_methods/n_questions_available.rb +128 -0
  632. data/lib/studium/toplevel_methods/n_topics_available.rb +63 -0
  633. data/lib/studium/toplevel_methods/name_of_this_curriculum.rb +38 -0
  634. data/lib/studium/toplevel_methods/names_of_all_solved_exams.rb +71 -0
  635. data/lib/studium/toplevel_methods/note_down_the_start_time_and_how_many_exams_have_been_already_solved.rb +70 -0
  636. data/lib/studium/toplevel_methods/opnn.rb +25 -0
  637. data/lib/studium/toplevel_methods/passed_this_exam_on.rb +105 -0
  638. data/lib/studium/toplevel_methods/pristine.rb +69 -0
  639. data/lib/studium/toplevel_methods/read_dataset_from_a_curriculum_file.rb +133 -0
  640. data/lib/studium/toplevel_methods/read_delay_between_questions_from_file.rb +34 -0
  641. data/lib/studium/toplevel_methods/regexes.rb +90 -0
  642. data/lib/studium/toplevel_methods/registered_for_this_exam.rb +62 -0
  643. data/lib/studium/toplevel_methods/remote_url.rb +57 -0
  644. data/lib/studium/toplevel_methods/remove_comments.rb +26 -0
  645. data/lib/studium/toplevel_methods/remove_exam_topics_that_were_already_answered.rb +27 -0
  646. data/lib/studium/toplevel_methods/remove_tags.rb +26 -0
  647. data/lib/studium/toplevel_methods/report.rb +143 -0
  648. data/lib/studium/toplevel_methods/report_all_lectures_matching_this_lecture_type.rb +45 -0
  649. data/lib/studium/toplevel_methods/report_attributed_lectures_to_universities.rb +30 -0
  650. data/lib/studium/toplevel_methods/report_n_ects_per_university.rb +63 -0
  651. data/lib/studium/toplevel_methods/report_n_entries_in_the_file_lecture_information.rb +36 -0
  652. data/lib/studium/toplevel_methods/report_nquestions_of.rb +96 -0
  653. data/lib/studium/toplevel_methods/report_solved_topics.rb +56 -0
  654. data/lib/studium/toplevel_methods/return_all_exams_on_this_day.rb +66 -0
  655. data/lib/studium/toplevel_methods/return_curriculum_of_this_lva_number.rb +82 -0
  656. data/lib/studium/toplevel_methods/return_dataset_for_this_exam_topic.rb +41 -0
  657. data/lib/studium/toplevel_methods/return_dataset_from_this_curriculum_file.rb +150 -0
  658. data/lib/studium/toplevel_methods/return_directory_for.rb +66 -0
  659. data/lib/studium/toplevel_methods/return_div_timetable_of_upcoming_exams.rb +489 -0
  660. data/lib/studium/toplevel_methods/return_ects_from_this_lecture_stored_in_the_file_lecture_information.rb +197 -0
  661. data/lib/studium/toplevel_methods/return_hash_of_already_solved_lectures.rb +41 -0
  662. data/lib/studium/toplevel_methods/return_local_path_of_this_pwdstud.rb +59 -0
  663. data/lib/studium/toplevel_methods/return_lva_number_of_this_lecture.rb +72 -0
  664. data/lib/studium/toplevel_methods/return_n_percent_solved_from_this_topic.rb +75 -0
  665. data/lib/studium/toplevel_methods/return_n_questions_were_answered_for_this_topic.rb +37 -0
  666. data/lib/studium/toplevel_methods/return_proper_university_image.rb +80 -0
  667. data/lib/studium/toplevel_methods/return_question_answer_string_from_this_topic.rb +56 -0
  668. data/lib/studium/toplevel_methods/return_sanitized_dataset_from_the_file_lecture_information.rb +126 -0
  669. data/lib/studium/toplevel_methods/return_theme_of_the_next_upcoming_exam.rb +38 -0
  670. data/lib/studium/toplevel_methods/return_this_curriculum_as_a_string.rb +26 -0
  671. data/lib/studium/toplevel_methods/return_title_from_this_curriculum_file.rb +91 -0
  672. data/lib/studium/toplevel_methods/rinstall2.rb +34 -0
  673. data/lib/studium/toplevel_methods/rti_conflict.rb +29 -0
  674. data/lib/studium/toplevel_methods/runmode.rb +86 -0
  675. data/lib/studium/toplevel_methods/sanitize_this_theme_topic.rb +128 -0
  676. data/lib/studium/toplevel_methods/sanitized_dataset_from_file_passed_exams_per_month.rb +52 -0
  677. data/lib/studium/toplevel_methods/save_all_registered_upcoming_exams.rb +62 -0
  678. data/lib/studium/toplevel_methods/save_file.rb +81 -0
  679. data/lib/studium/toplevel_methods/save_this_delay_between_questions_and_answers.rb +43 -0
  680. data/lib/studium/toplevel_methods/set_last_file_for_exam_questions.rb +64 -0
  681. data/lib/studium/toplevel_methods/set_this_cd_alias_to.rb +86 -0
  682. data/lib/studium/toplevel_methods/show_passed_ects_in_the_individual_bachelor_and_master_curricula.rb +81 -0
  683. data/lib/studium/toplevel_methods/show_passed_exams_having_this_grade.rb +27 -0
  684. data/lib/studium/toplevel_methods/spacer.rb +18 -0
  685. data/lib/studium/toplevel_methods/time.rb +220 -0
  686. data/lib/studium/toplevel_methods/total_ects_points_passed.rb +72 -0
  687. data/lib/studium/toplevel_methods/try_to_guess_the_most_likely_lva_id.rb +57 -0
  688. data/lib/studium/toplevel_methods/try_to_return_the_expanded_name_of_this_lecture.rb +63 -0
  689. data/lib/studium/toplevel_methods/unfinished.rb +51 -0
  690. data/lib/studium/toplevel_methods/url.rb +74 -0
  691. data/lib/studium/toplevel_methods/verbose_truth.rb +21 -0
  692. data/lib/studium/toplevel_methods/when_was_this_lecture_passed.rb +53 -0
  693. data/lib/studium/toplevel_methods/yes_or_no_ja_oder_nein.rb +33 -0
  694. data/lib/studium/tu_vienna/README.md +6 -0
  695. data/lib/studium/tu_vienna/tu_ferien.rb +38 -0
  696. data/lib/studium/tu_vienna/tu_/303/266ffnungszeiten.rb +29 -0
  697. data/lib/studium/utility_scripts/attribute_lecture_to_curriculum/attribute_boku_lecture_to_curriculum.rb +389 -0
  698. data/lib/studium/utility_scripts/attribute_lecture_to_curriculum/attribute_lecture_to_curriculum.rb +236 -0
  699. data/lib/studium/utility_scripts/attribute_lectures_to_university/attribute_lectures_to_university.rb +385 -0
  700. data/lib/studium/utility_scripts/audio_stats.rb +176 -0
  701. data/lib/studium/utility_scripts/auto_stud/auto_stud.rb +253 -0
  702. data/lib/studium/utility_scripts/auto_stud/constants.rb +23 -0
  703. data/lib/studium/utility_scripts/auto_stud/initialize.rb +23 -0
  704. data/lib/studium/utility_scripts/auto_stud/misc.rb +18 -0
  705. data/lib/studium/utility_scripts/autopurge_this_lecture_date.rb +101 -0
  706. data/lib/studium/utility_scripts/calendar/README.md +2 -0
  707. data/lib/studium/utility_scripts/calendar/calendar.rb +244 -0
  708. data/lib/studium/utility_scripts/calendar/misc.rb +35 -0
  709. data/lib/studium/utility_scripts/check_description_of_these_lectures.rb +224 -0
  710. data/lib/studium/utility_scripts/clean_up_lecture_date.rb +151 -0
  711. data/lib/studium/utility_scripts/current_lectures_belonging_to_both_bachelor_and_master_curriculum.rb +113 -0
  712. data/lib/studium/utility_scripts/currently_participating_in_these_lectures.rb +104 -0
  713. data/lib/studium/utility_scripts/display_lecture_url.rb +117 -0
  714. data/lib/studium/utility_scripts/expand_time_range.rb +422 -0
  715. data/lib/studium/utility_scripts/find_duplicate_lectures.rb +121 -0
  716. data/lib/studium/utility_scripts/finished_exams_at_this_university.rb +94 -0
  717. data/lib/studium/utility_scripts/foreign_language_percentage/constants.rb +28 -0
  718. data/lib/studium/utility_scripts/foreign_language_percentage/foreign_language_percentage.rb +142 -0
  719. data/lib/studium/utility_scripts/foreign_language_percentage/help.rb +29 -0
  720. data/lib/studium/utility_scripts/foreign_language_percentage/initialize.rb +25 -0
  721. data/lib/studium/utility_scripts/foreign_language_percentage/menu.rb +141 -0
  722. data/lib/studium/utility_scripts/foreign_language_percentage/report.rb +62 -0
  723. data/lib/studium/utility_scripts/foreign_language_percentage/reset.rb +57 -0
  724. data/lib/studium/utility_scripts/foreign_language_percentage/run.rb +19 -0
  725. data/lib/studium/utility_scripts/generate_spreadsheet.rb +349 -0
  726. data/lib/studium/utility_scripts/holidays.rb +143 -0
  727. data/lib/studium/utility_scripts/lecture_downloader.rb +115 -0
  728. data/lib/studium/utility_scripts/lectures_attributed_to_universities.rb +344 -0
  729. data/lib/studium/utility_scripts/lva_nummer.rb +440 -0
  730. data/lib/studium/utility_scripts/mandatory_lectures_in_this_month.rb +321 -0
  731. data/lib/studium/utility_scripts/name_of_this_lva_id.rb +110 -0
  732. data/lib/studium/utility_scripts/new_stud.rb +332 -0
  733. data/lib/studium/utility_scripts/next_week.rb +111 -0
  734. data/lib/studium/utility_scripts/passed_ects_per_year.rb +172 -0
  735. data/lib/studium/utility_scripts/passed_pr/303/274fungsimmanente_courses/passed_pr/303/274fungsimmanente_courses.rb +181 -0
  736. data/lib/studium/utility_scripts/prepare_individual_curriculum.rb +182 -0
  737. data/lib/studium/utility_scripts/priority.rb +126 -0
  738. data/lib/studium/utility_scripts/priority_points.rb +263 -0
  739. data/lib/studium/utility_scripts/publish_my_exams.rb +174 -0
  740. data/lib/studium/utility_scripts/regexes/README.md +2 -0
  741. data/lib/studium/utility_scripts/regexes/generate_regex.rb +278 -0
  742. data/lib/studium/utility_scripts/regexes/generate_regexes_for_the_available_moodle_links.rb +54 -0
  743. data/lib/studium/utility_scripts/regexes/generate_regexes_for_the_registered_lectures.rb +48 -0
  744. data/lib/studium/utility_scripts/report_outdated_timetable_entries.rb +148 -0
  745. data/lib/studium/utility_scripts/report_total_amount_of_questions_and_answers_for.rb +120 -0
  746. data/lib/studium/utility_scripts/report_whether_this_lecture_is_registered_in_the_file_lecture_information.rb +125 -0
  747. data/lib/studium/utility_scripts/resolve_practical_courses_date_conflicts/individual_resolve_practical_courses_date_conflicts.rb +257 -0
  748. data/lib/studium/utility_scripts/resolve_practical_courses_date_conflicts/resolve_practical_courses_date_conflicts.rb +273 -0
  749. data/lib/studium/utility_scripts/scrape_remote_university_url.rb +146 -0
  750. data/lib/studium/utility_scripts/semester_schedule_creator/semester_container.rb +142 -0
  751. data/lib/studium/utility_scripts/semester_schedule_creator/semester_schedule_creator.rb +381 -0
  752. data/lib/studium/utility_scripts/semesterplaner.rb +289 -0
  753. data/lib/studium/utility_scripts/show_all_lectures.rb +403 -0
  754. data/lib/studium/utility_scripts/show_all_passed_master_lectures.rb +127 -0
  755. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/constants.rb +56 -0
  756. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/do_report_the_upcoming_exams.rb +60 -0
  757. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/help.rb +49 -0
  758. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/initialize.rb +28 -0
  759. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/menu.rb +54 -0
  760. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/misc.rb +214 -0
  761. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/report.rb +118 -0
  762. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/reset.rb +80 -0
  763. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/run.rb +22 -0
  764. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/show_conflicting_lva_lectures.rb +651 -0
  765. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/constants.rb +28 -0
  766. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/menu.rb +62 -0
  767. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/reset.rb +36 -0
  768. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/run.rb +35 -0
  769. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/show_descriptions_of_lectures_belonging_to_this_module.rb +145 -0
  770. data/lib/studium/utility_scripts/show_lecturers/show_lecturers.rb +145 -0
  771. data/lib/studium/utility_scripts/show_lectures/constants.rb +16 -0
  772. data/lib/studium/utility_scripts/show_lectures/help.rb +34 -0
  773. data/lib/studium/utility_scripts/show_lectures/initialize.rb +23 -0
  774. data/lib/studium/utility_scripts/show_lectures/menu.rb +106 -0
  775. data/lib/studium/utility_scripts/show_lectures/misc.rb +582 -0
  776. data/lib/studium/utility_scripts/show_lectures/reset.rb +92 -0
  777. data/lib/studium/utility_scripts/show_lectures/run.rb +27 -0
  778. data/lib/studium/utility_scripts/show_lectures/show_lectures.rb +48 -0
  779. data/lib/studium/utility_scripts/show_lectures_fitting_to_this_language.rb +129 -0
  780. data/lib/studium/utility_scripts/show_lectures_fitting_to_this_theme.rb +100 -0
  781. data/lib/studium/utility_scripts/show_lectures_on_this_day.rb +154 -0
  782. data/lib/studium/utility_scripts/show_lva_dates_of_this_lecture.rb +177 -0
  783. data/lib/studium/utility_scripts/show_outdated_lva_dates.rb +218 -0
  784. data/lib/studium/utility_scripts/show_solved_english_lectures.rb +139 -0
  785. data/lib/studium/utility_scripts/show_the_associated_lectures_for_the_individual_curriculum.rb +285 -0
  786. data/lib/studium/utility_scripts/studienkennzahl.rb +109 -0
  787. data/lib/studium/utility_scripts/studium_skeleton.rb +220 -0
  788. data/lib/studium/utility_scripts/stundenplan.rb +603 -0
  789. data/lib/studium/utility_scripts/sync_studium_relevant_entries_one_level_downwards.rb +221 -0
  790. data/lib/studium/utility_scripts/ufind.rb +101 -0
  791. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/constants.rb +31 -0
  792. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/run.rb +20 -0
  793. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/upcoming_mandatory_presence_courses.rb +179 -0
  794. data/lib/studium/utility_scripts/vorbesprechungen.rb +293 -0
  795. data/lib/studium/utility_scripts/week_parser/constants.rb +28 -0
  796. data/lib/studium/utility_scripts/week_parser/help.rb +32 -0
  797. data/lib/studium/utility_scripts/week_parser/menu.rb +56 -0
  798. data/lib/studium/utility_scripts/week_parser/misc.rb +51 -0
  799. data/lib/studium/utility_scripts/week_parser/reset.rb +55 -0
  800. data/lib/studium/utility_scripts/week_parser/run.rb +18 -0
  801. data/lib/studium/utility_scripts/week_parser/show.rb +242 -0
  802. data/lib/studium/utility_scripts/week_parser/week_parser.rb +362 -0
  803. data/lib/studium/utility_scripts/weekday_parser.rb +159 -0
  804. data/lib/studium/utility_scripts/weekly_schedule.rb +209 -0
  805. data/lib/studium/utility_scripts/wochenplanung.rb +278 -0
  806. data/lib/studium/version/version.rb +46 -0
  807. data/lib/studium/www/curricula_displayer.cgi +170 -0
  808. data/lib/studium/www/curriculum_displayer.rb +162 -0
  809. data/lib/studium/www/exams.cgi +50 -0
  810. data/lib/studium/www/statistics.cgi +55 -0
  811. data/lib/studium/yaml/allowed_themes_for_exams.yml +307 -0
  812. data/lib/studium/yaml/array_allowed_entries_for_the_file_lecture_information.yml +68 -0
  813. data/lib/studium/yaml/backlog_of_exams.yml +35 -0
  814. data/lib/studium/yaml/current_exams.yml +19 -0
  815. data/lib/studium/yaml/curricula.yml +530 -0
  816. data/lib/studium/yaml/curricula/README.md +3 -0
  817. data/lib/studium/yaml/curricula/bachelor_agrarwissenschaften_033255.yml +130 -0
  818. data/lib/studium/yaml/curricula/bachelor_biologie_basisblock_033630.yml +65 -0
  819. data/lib/studium/yaml/curricula/bachelor_biologie_botanik_033630.yml +84 -0
  820. data/lib/studium/yaml/curricula/bachelor_biologie_ecology_033630.yml +74 -0
  821. data/lib/studium/yaml/curricula/bachelor_biologie_mikrobiologie_und_genetik_033630.yml +120 -0
  822. data/lib/studium/yaml/curricula/bachelor_biologie_molekulare_biologie_033630.yml +104 -0
  823. data/lib/studium/yaml/curricula/bachelor_biologie_zoologie_033630.yml +87 -0
  824. data/lib/studium/yaml/curricula/bachelor_chemie_033662.yml +164 -0
  825. data/lib/studium/yaml/curricula/bachelor_dummy_curriculum.yml +135 -0
  826. data/lib/studium/yaml/curricula/bachelor_elektrotechnik_und_informationstechnik_033235.yml +13 -0
  827. data/lib/studium/yaml/curricula/bachelor_forstwirtschaft_033225.yml +105 -0
  828. data/lib/studium/yaml/curricula/bachelor_informatik_033521.yml +130 -0
  829. data/lib/studium/yaml/curricula/bachelor_informatik_und_molekulare_biologie.yml +1144 -0
  830. data/lib/studium/yaml/curricula/bachelor_ktww_033231.yml +84 -0
  831. data/lib/studium/yaml/curricula/bachelor_lmbt_033217.yml +108 -0
  832. data/lib/studium/yaml/curricula/bachelor_medizinische_informatik_033533.yml +200 -0
  833. data/lib/studium/yaml/curricula/bachelor_molekularbiologie_033665.yml +93 -0
  834. data/lib/studium/yaml/curricula/bachelor_nutrition_science_033638.yml +117 -0
  835. data/lib/studium/yaml/curricula/bachelor_pharmazie_033305.yml +170 -0
  836. data/lib/studium/yaml/curricula/bachelor_technische_chemie_033290.yml +129 -0
  837. data/lib/studium/yaml/curricula/bachelor_technische_informatik_033535.yml +23 -0
  838. data/lib/studium/yaml/curricula/bachelor_ubrm_033227.yml +140 -0
  839. data/lib/studium/yaml/curricula/bachelor_vector_based_strategies_in_life_sciences_molecular_medicine_and_biotechnology.yml +1157 -0
  840. data/lib/studium/yaml/curricula/bachelor_verfahrenstechnik_033273.yml +167 -0
  841. data/lib/studium/yaml/curricula/bachelor_wirtschaftsinformatik_033526.yml +29 -0
  842. data/lib/studium/yaml/curricula/master_bioinformatics_and_molecular_biotechnology_including_aspects_from_molecular_medicine.yml +438 -0
  843. data/lib/studium/yaml/curricula/master_bioinformatik_066875.yml +76 -0
  844. data/lib/studium/yaml/curricula/master_biologie_molekulare_mikrobiologie_mikrobielle_oekologie_und_immunbiologie_066830.yml +78 -0
  845. data/lib/studium/yaml/curricula/master_biologische_chemie_066863.yml +61 -0
  846. data/lib/studium/yaml/curricula/master_dummy_curriculum.yml +137 -0
  847. data/lib/studium/yaml/curricula/master_food_science_and_plant_biotechnology.yml +30 -0
  848. data/lib/studium/yaml/curricula/master_genetik_und_entwicklungsbiologie_066877.yml +90 -0
  849. data/lib/studium/yaml/curricula/master_lmbt_066418.yml +65 -0
  850. data/lib/studium/yaml/curricula/master_molekulare_biologie_066834.yml +142 -0
  851. data/lib/studium/yaml/curricula/master_pharmazie_066605.yml +170 -0
  852. data/lib/studium/yaml/curricula/master_technische_chemie_066490.yml +123 -0
  853. data/lib/studium/yaml/curricula/master_vector_based_strategies_in_life_sciences_molecular_medicine_and_biotechnology.yml +741 -0
  854. data/lib/studium/yaml/custom_colours.yml +21 -0
  855. data/lib/studium/yaml/daily_questions_solved.yml +789 -0
  856. data/lib/studium/yaml/default_delay.yml +4 -0
  857. data/lib/studium/yaml/default_encoding.yml +1 -0
  858. data/lib/studium/yaml/directory_to_the_exam_topics.yml +0 -0
  859. data/lib/studium/yaml/editor.yml +1 -0
  860. data/lib/studium/yaml/file_for_exam_questions.yml +1 -0
  861. data/lib/studium/yaml/german/README.md +2 -0
  862. data/lib/studium/yaml/german/german_to_english_month_names.yml +16 -0
  863. data/lib/studium/yaml/grouped_themes.yml +187 -0
  864. data/lib/studium/yaml/holidays.yml +176 -0
  865. data/lib/studium/yaml/important_exams.yml +194 -0
  866. data/lib/studium/yaml/inscription_dates_of_universities.yml +58 -0
  867. data/lib/studium/yaml/lecture_aliases.yml +108 -0
  868. data/lib/studium/yaml/lecture_information.yml +47783 -0
  869. data/lib/studium/yaml/log_dir.yml +1 -0
  870. data/lib/studium/yaml/main_topic.yml +11 -0
  871. data/lib/studium/yaml/max_stats.yml +227 -0
  872. data/lib/studium/yaml/mitteilungsbl/303/244tter.yml +315 -0
  873. data/lib/studium/yaml/n_total_questions.yml +1 -0
  874. data/lib/studium/yaml/participating_in_these_courses.yml +50 -0
  875. data/lib/studium/yaml/rename_konsole_tab.yml +1 -0
  876. data/lib/studium/yaml/show_topic.yml +1 -0
  877. data/lib/studium/yaml/statistics.yml +57 -0
  878. data/lib/studium/yaml/use_colours.yml +1 -0
  879. data/studium.gemspec +79 -0
  880. data/test/testing_studium.rb +244 -0
  881. data/test/testing_time_component.rb +29 -0
  882. metadata +1079 -0
@@ -0,0 +1,417 @@
1
+ # =========================================================================== #
2
+ # === AMINOACIDS
3
+ #
4
+ # All about the Aminoacids. Aminoacid tag. Aa tag. AAtag. Aminosäuren tag.
5
+ # Aminosäure tag. Auch Peptidbindung.
6
+ # =========================================================================== #
7
+
8
+ - <one>Fumarat</one> entsteht beim Abbau welcher Aminosäure, zum Beispiel? <one>Phenylalanin</one> (<royalblue>F</royalblue>). URL: https://de.wikipedia.org/wiki/Fumars%C3%A4ure []
9
+ - Wieviele der 20 kanonischen Aminosäuren sind <one>Diaminocarbonsäuren</one>? Nenne Sie auch. A: <lightgreen>3</lightgreen>: <one>Asparagin</one>, <one>Glutamin</one> und <one>Lysin</one> (<one>K</one>) sind die <royalblue>proteinogenen Diaminosäuren</royalblue>. (Arginin hingegen hat 4 Stickstoffatome.) []
10
+ - How do we call <one>aminoacids</one> bound in proteins? We drop the <one>-ine</one> suffix and replace it via <two>-yl</two>, such as in <royalblue>aspartyl</royalblue>. []
11
+ - Unterschied zwischen <one>Tyrosin</one> und <one>Phenylalanin</one>? <one>Tyrosin</one> besitzt eine <two>endständige -OH Gruppe</two>, im Gegensatz zu <one>Phenylalanin</one>. []
12
+ - Wie ist eine <one>Aminosäure</one> mit der <two>tRNA</two> verbunden? Die Aminosäure ist mit der <one>3'-Hydroxygruppe</one> (<one>3'-OH</one>) der tRNA <royalblue>verestert</royalblue> (dies ist <mediumturquoise>Adenin</mediumturquoise>, da terminal ein <slateblue>CCA-Rest</slateblue> zu finden ist). []
13
+ - Welche drei Aminosäuren werden zum <one>Aufbau der Nukleotide</one> benötigt? (Mnemonic: <royalblue>GQD</royalblue>) (1) <one>Glycin</one> (<royalblue>G</royalblue>) (2) <one>Glutamin</one> (<royalblue>Q</royalblue>) (3) <one>Aspartat</one> (<royalblue>D</royalblue>) <mediumseagreen>G_Q_D</mediumseagreen> []
14
+ - <three>Slogan</three> der <one>charged aminoacids</one>? A: <royalblue>DEKaR</royalblue> (<one>DEKR</one> ... <two>DEKR</two>et) []
15
+ - Welche zwei Aminosäuren dienen als <one>Aminogruppendonatoren</one>? (1) <one>Glutamin</one> (<royalblue>Q</royalblue>) (2) <one>Aspartat</one> (<royalblue>D</royalblue>) []
16
+ - Welche zwei Aminosäuren sind <one>rein ketogen</one>, werden also zu <two>Acetyl-CoA</two> abgebaut? (1) <one>Leucin</one> (2) <one>Lysin</one> []
17
+ - <one>Welche zwei Aminosäuren</one> besitzen <two>zwei chirale Zentren</two>? (1) <one>Isoleucin</one> (2) <one>Threonin</one> []
18
+ - <one>Welche zwei Aminosäuren</one> besitzen eine <two>Carboxamidgruppe</two>? (1) <one>Asparagin</one> (2) <one>Glutamin</one> []
19
+ - Welche zwei Aminosäuren besitzen <one>zwei Stereozentren</one>? (1) <royalblue>Isoleucin</royalblue> (2) <royalblue>Threonin</royalblue> []
20
+ - Im <one>Dreibuchstabencode</one> sind die ersten drei Buchstaben die Abkürzung für die Aminosäuren. Es gibt hierzu jedoch <two>vier Ausnahmen</two>, und zwar ... ? (1) <one>Tryptophan</one>: <two>Trp</two> (<three>W</three>) (2) <one>Isoleucin</one>: <two>Ile</two> (<three>I</three>) (3) <one>Glutamin</one>: <two>Gln</two> (<three>Q</three>) (4) <one>Asparagin</one>: <two>Asn</two> (<three>N</three>) []
21
+ - 'Besseres' Wort für die <one>aliphatischen Aminosäuren</one> (da leichter zu merken)? Die <one>GAVLIphatischen Aminosäuren</one>. []
22
+ - Nenne eine konkrete <one>Einschritt-Reaktion</one> zwischen zwei Aminosäuren. A: Die <one>Hydroxylierung von Phenylalanin</one>, zu <three>Tyrosin</three> (<two>F → Y</two>). []
23
+ - Welche Aminosäuren sind <one>positiv geladen</one> bei einem <mediumseagreen>neutralen pH</mediumseagreen>? <two>Nur zwei Aminosäuren</two> - und zwar <one>Arginin</one> sowie <one>Lysin</one>. (Histidin nur bei pH 6, nicht jedoch bei pH 7!) []
24
+ - The side chain of which amino acids are <one>excellent metal ligands</one>? Mnemonic: <springgreen>DECH</springgreen> oder <springgreen>DECH-METAL</springgreen> (1) <one>aspartic acid</one> (<royalblue>D</royalblue>) (2) <one>glutamic acid</one> (<royalblue>E</royalblue>) (3) <one>cysteine</one> (<royalblue>C</royalblue>) (4) <one>histidine</one> (<royalblue>H</royalblue>) []
25
+ - Which aminoacids (including their one-letter abbreviation) are <one>basic</one>? <one>Lysine</one>, <one>Histidine</one>, <one>Arginine</one> (<royalblue>K, H, R</royalblue>). []
26
+ - Hinter der Abkürzung <one>DOPA</one> verbirgt sich welche Aminosäure? <one>Phenylalanin</one>; und zwar genauer <mediumturquoise>L-3,4-dihydroxyphenylalanine</mediumturquoise> (<one>Dihydroxyphenylalanin</one>; Mnemonic: <two>Dopalanine</two>). URL: https://en.wikipedia.org/wiki/L-DOPA#/media/File:3,4-Dihydroxy-L-phenylalanin_(Levodopa).svg []
27
+ - Nenne jeweils die charakteristische Gruppe im Rest von <one>Arginin</one>, <one>Histidin</one> und <one>Lysin</one>. A: (1) <mediumseagreen>Arginin</mediumseagreen>: eine <one>Guanidinogruppe</one> (2) <mediumseagreen>Histidin</mediumseagreen>: eine <one>Imidazolgruppe</one> (3) <mediumseagreen>Lysin</mediumseagreen>: eine <one>Aminogruppe</one> []
28
+ - Was ist der <one>strukturelle Unterschied</one> zwischen <two>L-Lysin</two> und <two>L-Allysin</two>? (1) <royalblue>L-Lysin</royalblue> hat eine <one>terminale NH₂-Gruppe</one>. (2) <royalblue>L-Allysin</royalblue> hat eine <one>terminale C=O Gruppe</one> (und ein H Atom). []
29
+ - Aminosäuren mit unpolaren Seitenketten (mittels Merkschema)? <springgreen>G, A, V, L, I, M</springgreen>. []
30
+ - <one>Homoserin</one> ist eine Zwischenstufe bei der Synthese welcher Aminosäure? <one>Arginin</one>. URL: https://de.wikipedia.org/wiki/Homoserin []
31
+ - Das Enzym <one>Lysyl-Oxidase</one> <peru>desaminiert</peru> welche Aminosäurenseitenketten? <one>Lysinseitenketten</one>. URL: https://de.wikipedia.org/wiki/Lysyloxidase []
32
+ - The chemical formula of <one>glycine</one> is ... ? <one>C₂H₅NO₂</one> (<two>C₂|H₅|N|O₂</two>). URL: https://en.wikipedia.org/wiki/Glycine []
33
+ - Warum mögen wir behaupten, das <one>Arginin</one> auch eine <two>essenzielle Aminosäure</two> für Säugetiere ist? Da <mediumaquamarine>Säugetiere</mediumaquamarine> zwar Arginin synthetisieren können, dies jedoch <one>nicht in ausreichender Menge</one>. []
34
+ - <one>Ornithin</one> ähnelt welcher Aminosäure? <two>Ornithin</two> ähnelt <one>Lysin</one>. URL: https://de.wikipedia.org/wiki/Ornithin []
35
+ - Nenne die <one>Diaminocarbonsäuren</one>. A: (1) <one>Asparagin</one> (<two>C₄|H8|N₂|O₃</two>) (2) <one>Glutamin</one> (<two>C5|H10|N₂|O₃</two>) (3) <one>Lysin</one> (<two>C6|H1₄|N₂|O₂</two>)
36
+ - Die <one>Folsäure</one> hat einen Aminosäure-Anteil. Welche Aminosäure ist dies? <one>L-Glutaminsäure</one>. URL: https://de.wikipedia.org/wiki/Fols%C3%A4ure []
37
+ - <one>Ordne</one> die 20 Aminosäuren, <two>gemäss ihrer Hydrophobizität</two>, beginnend mit der am stärksten hydrophoben Aminosäure. A: <royalblue>IVL-FCM-AGT-SWY-PHE-QDN-KR</royalblue>. (Mnemonic: <one>Ich Vergesse Leicht</one>, <one>Feige Chronische Mäuse</one>, <one>Alle grossen Tiere</one> ... <one>Schweine wissen yikes</one> ... <one>PHEnyl</one> ... ...) []
38
+ - Wenn <one>Glycin</one> <two>decarboxyliert</two> wird, entsteht welche Substanz? <one>Methylamin</one>. URL: https://de.wikipedia.org/wiki/Methylamin []
39
+ - Merkslogan für die <one>positively charged Aminogroups</one>? Basically, (<mediumseagreen>+</mediumseagreen>) the <royalblue>HISTory</royalblue> of <royalblue>ARGentina</royalblue> is a <royalblue>LYe</royalblue>! []
40
+ - <one>Diphthamid</one> ähnelt welcher Aminosäure? A: <one>Histidin</one>. URL: https://de.wikipedia.org/wiki/Diphthamid []
41
+ - Das <one>biogene Amin</one> <two>Cadaverin</two> entstammt welcher Aminosäure? <one>Lysin</one>. URL: http://flexikon.doccheck.com/de/Cadaverin []
42
+ - Wo findet der <one>Aminosäureabbau</one> im Menschen statt? In der <one>Leber</one>. URL: https://de.wikipedia.org/wiki/Aminos%C3%A4urenstoffwechsel#Abbau_der_proteinogenen_L-Aminos%C3%A4uren []
43
+ - How does <one>Threonine</one> differ from <one>Serine</one>? (1) <royalblue>Serine</royalblue> has a <one>terminal hydroxy group -OH</one>. (2) <royalblue>Threonine</royalblue> has a <one>non-terminal hydroxy group -OH</one>. URL: http://groups.molbiosci.northwestern.edu/holmgren/Glossary/Images/pics/amino_acids/Threonine.gif []
44
+ - Nenne eine <lightseagreen>besondere Gruppe</lightseagreen>, die in der Aminosäure <one>Arginin</one> gefunden werden kann. A: Die <one>Guanidino-Gruppe</one>. URL: https://de.wikipedia.org/wiki/Arginin#Eigenschaften []
45
+ - Die <one>Pyroglutaminsäure</one> ist abgeleitet von welcher Aminosäure? <one>L-Glutaminsäure</one>. URL: https://de.wikipedia.org/wiki/Pyroglutamins%C3%A4ure []
46
+ - Aminosäuren sind <one>Zwitterionen</one>. Was heisst das bei neutralem pH, kurz formuliert? (1) Die <one>Aminogruppe</one> liegt <three>protoniert</three> (<two>⁺</two>) vor. (2) Die <one>Carboxygruppe</one> hingegen liegt <three>deprotoniert</three> (<two>-</two>) vor. []
47
+ - Was ist der Unterschied zwischen der <one>Asparaginsäure</one> und <one>Aspartat</one>? (1) <royalblue>Aspartat</royalblue> hat die geladene <one>-COO⁻ Gruppe</one>. (2) <royalblue>Asparaginsäure</royalblue> besitzt die ungeladene <one>-COOH Gruppe</one>. []
48
+ - <one>Glutathion</one> besteht aus welchen <two>drei Aminosäuren</two>, in korrekter Folge? <one>Glutamat</one>-<one>Cystein</one>-<one>Glycin</one>. (<royalblue>E-C-G</royalblue>) URL: https://de.wikipedia.org/wiki/Glutathion []
49
+ - <three>Welche Aminosäure</three> kann eine <one>Schiff-Base</one> eingehen? <one>Lysin</one>; und zwar mit Hilfe seiner <two>Epsilon-Aminogruppe</two>. URL: https://en.wikipedia.org/wiki/Schiff_base#Biochemistry []
50
+ - Name three aminoacids that are <one>poor alpha-helix formers</one>. A: (1) <one>Glycine</one> (2) <one>Proline</one> (3) <one>Tyrosine</one> []
51
+ - Welche Aminosäuren haben <one>mehr als 1x COOH Gruppe</one>? (1) <one>Glutaminsäure</one> (2) <one>Asparaginsäure</one> []
52
+ - Welche <one>4</one> beziehungsweise <one>6</one> Buchstaben des <two>aminoacid one-letter-code</two> werden nicht verwendet? <one>J-O-U-X</one>; <one>B</one>, <one>J</one>, <one>O</one>, <one>U</one>, <one>X</one>, <one>Z</one>. (<royalblue>BJO-UXZ</royalblue>; B und Z zumindest nicht nur für eine einzige Aminosäure; <two>B-JOUX-Z</two>.) []
53
+ - Die Aminosäure <one>Arginin</one> trägt welche Gruppe? <two>Arginin</two> trägt eine <one>Guanidiumgruppe</one>. URL: https://de.wikipedia.org/wiki/Guanidin []
54
+ - Wann wird <one>Tyrosin</one> eine essenzielle Aminosäure? Wenn <one>Phenylalanin</one> (<mediumseagreen>im Magen</mediumseagreen>) limitiert vorliegt. []
55
+ - Welche Aminosäuren gehören zur <one>Serin-Familie</one>? (1) <one>S</one> (2) <one>G</one> (3) <one>C</one> []
56
+ - Nenne die 4 Aminosäuren, die <one>gute Nukleophile</one> sind. A: (1) <one>Lysin</one> (2) <one>Cystein</one> (3) <one>Histidin</one> (4) <one>Serin</one> (Mnemonic: <royalblue>der </royalblue><two>K</two><royalblue>ern des</royalblue> <royalblue>La</royalblue><two>CHS</two><royalblue>es</royalblue>. []
57
+ - Die Aminosäure <one>Glutamat</one> geht, biosynthetisch betrachtet, woraus hervor? Aus <one>Oxoglutarat</one>. URL: http://deacademic.com/pictures/dewiki/65/Alpha-ketoglutaric_acid.png []
58
+ - Von den <one>drei aromatischen Aminosäuren</one>: welche dieser Aminosäuren ist <two>am hydrophobsten</two> - und warum nicht die anderen? A: <one>F</one> ist am hydrophobsten, <one>Y</one> hat eine polare <two>OH Gruppe</two> und <one>W</one> hat eine <two>NH-Gruppe</two> im Rest. []
59
+ - Name a <one>small peptide hormone</one> with <two>less than 10 aminoacids</two>. A: <one>Oxytocin</one> (it has <mediumseagreen>9 Aminoacids</mediumseagreen>). URL: https://en.wikipedia.org/wiki/Oxytocin#Chemistry []
60
+ - Der <one>Abbau der meisten Aminosäuren beginnt mit</one> ...? Mit der <one>Entfernung der α-Aminogruppe (Alpha-Aminogruppe)</one>. []
61
+ - Bei den Aminosäuren: wie liegt die <one>N-Gruppe</one> vor, die bei jeder Aminosäure vorhanden ist? <one>NH₂</one>, da eine Bindung zum anliegenden C reicht. []
62
+ - Die <one>DNA-Polymerase</one> verwendet <two>Mg²⁺ Ionen</two> - aber welche Aminosäuren koordinieren diese Ionen? Zwei konservierte <one>Aspartate</one>. []
63
+ - Der <one>pKa-Wert</one> der Aminosäure <two>Histidin</two> beträgt ... ? <one>6.0</one>. []
64
+ - Die <one>Pantothensäure</one> inkludiert, praktisch gesehen, welche Aminosäure? <one>Alanin</one>. URL: https://de.wikipedia.org/wiki/Pantothens%C3%A4ure []
65
+ - <one>Serotonin</one> wird aus welcher Aminosäuren gebildet? <one>L-Tryptophan</one>. URL: https://de.wikipedia.org/wiki/Serotonin []
66
+ - Name <one>unstable amino acids</one>. A: <one>Asparagine</one> and <one>Glutamine</one>. These <two>amides</two> break down into the corresponding acids. []
67
+ - <one>Glutathion</one> besteht aus ... ? <royalblue>Glu-Cys-Gly</royalblue>; <royalblue>ECG</royalblue> (eigentlich <royalblue>E-C-G</royalblue>); Mnemonic: Zwei <one>G</one>-G, so wie auch Glutathion mit <one>G</one> beginnt sowie ein <one>S</one> Schwefel-Atom. (1) <one>Glutamat</one> (<royalblue>E</royalblue>) (2) <one>Cystein</one> (<royalblue>C</royalblue>) (3) <one>Glycin</one> (<royalblue>G</royalblue>) []
68
+ - If <one>tryptophan is decarboxylated</one>, what substance may be created? <one>Tryptamine</one>. URL: https://en.wikipedia.org/wiki/Tryptamine []
69
+ - Nenne eine <one>redox-relevante Aminosäure</one>. A: <one>Cystein</one>. URL: https://de.wikipedia.org/wiki/Cystein []
70
+ - Welche Ladung tragen die Seitenketten <one>basischer Aminosäuren</one>, in der Zelle? Sie sind <one>einfach positiv (⁺) geladen</one>. []
71
+ - Nenne drei Charakteristika der Aminosäure <one>Tryptophan</one>. A: (1) ist <one>stickstoffhaltig</one> (2) hat einen <one>aromatischen Ring</one> (3) bezeichnet man als <one>unpolar</one> []
72
+ - What was <one>the last</one> of the 20 common amino acids to be <two>discovered</two>? <one>Threonine</one> - in the year <mediumseagreen>1935</mediumseagreen>. []
73
+ - <one>Shikimat</one> ist Vorläufer welcher 3 Aminosäuren? (1) <one>Tryptophan</one> (<royalblue>W</royalblue>) (2) <one>Tyrosin</one> (<royalblue>Y</royalblue>) (3) <one>Phenylalanin</one> (<royalblue>F</royalblue>) []
74
+ - The <one>tmRNA</one> (<two>transfer-messenger-RNA</two>) prefers which particular amino acid? <one>Alanine</one> (Mnemonic: <peru>tmRNA-Alanine</peru>). URL: https://en.wikipedia.org/wiki/Transfer-messenger_RNA []
75
+ - <one>L-Norvalin</one> ist eine <two>nichtproteinogene Aminosäure</two>, die ein bestimmtes Enzym hemmen kann. Welches Enzym wird durch <one>L-Novalin</one> gehemmt? Die <one>Arginase</one>. Aufgrund dieser Hemmung kommt es zu einer <two>Erhöhung der Arginin-Konzentration</two>. URL: https://de.wikipedia.org/wiki/Norvalin []
76
+ - Bei einer <one>L-Aminosäure</one>: wo befindet sich dessen <two>NH₂-Gruppe</two>? Auf der <one>linken Seite</one>. []
77
+ - <one>Protein fluorescence</one> in general arises primarily from which residue? <one>Tryptophan</one>. URL: https://en.wikipedia.org/wiki/Tryptophan []
78
+ - Nenne eine Aminosäure mit einer <one>Indol-Gruppe</one>. A: <one>Tryptophan</one>. URL: https://de.wikipedia.org/wiki/Tryptophan []
79
+ - <one>Electrostatic interactions</one> occur between ... what kind of amino acids? Between <one>charged amino acid side chains</one>. []
80
+ - Die beiden Aminosäuren <one>Selenocystein</one> und <one>Pyrrolysine</one> sind seit einigen Jahren bekannt. Welche Codons kodieren jeweils für diese Aminosäuren? (1) <mediumseagreen>Selenocystein</mediumseagreen>: <one>UGA</one> (2) <mediumseagreen>Pyrrolysine</mediumseagreen>: <one>UAG</one> []
81
+ - <one>Glycin</one> kann, unter Hilfe der <lightseagreen>Tetrahydrofolsäure</lightseagreen> als Cofaktor, in welch andere Aminosäure konvertiert werden? <one>Serin</one> (<two>G → S</two>). []
82
+ - What is the product of the <one>catabolic breakdown of Alanine</one>? <one>Pyruvate</one>. []
83
+ - <one>m-DAP</one> (<lightseagreen>Diaminopimelic acid</lightseagreen>) ähnelt welcher Aminosäure? <one>Lysin</one>. URL: https://en.wikipedia.org/wiki/Diaminopimelic_acid []
84
+ - <one>Welche Aminosäure</one> ist <three>die Sammelstation für Alpha-Aminogruppen</three>? <one>Glutamat</one> (<two>Mnemo</two>-Hilfe: Glutamat hat zwei a; Glutamin nur ein a im Namen; <one>Alpha-Aminogruppen</one> beginnen zweimal mit dem Buchstaben <royalblue>A</royalblue>). []
85
+ - Die Aminosäure <one>Histidin</one> hat insgesamt wieviele C Atome? <one>6</one>. (Summenformel: <two>C₆H9N₃O₂</two>) URL: https://en.wikipedia.org/wiki/Histidine []
86
+ - <one>Pyruvat</one> + <one>NH₃</one> wird zu welcher Aminosäure? <one>Alanin</one>. URL: https://de.wikipedia.org/wiki/Alanin []
87
+ - Which aminoacid may typically give rise to <one>4-hydroxyphenylpyruvic acid</one>? <one>Tyrosine</one>. []
88
+ - <one>Tyrosin</one> besitzt was für einen Ring? <one>Tyrosin</one> besitzt einen <two>Phenolring</two>. URL: https://upload.wikimedia.org/wikipedia/commons/thumb/8/8b/Phenol2.svg/1200px-Phenol2.svg.png []
89
+ - What is <one>the product of the catabolic breakdown of Arginine</one>? <one>Alpha-Ketoglutarate</one>. URL: https://en.wikipedia.org/wiki/Alpha-Ketoglutaric_acid []
90
+ - Welche Aminosäure <one>destabilisiert</one> ein Protein am schnellsten/effektivsten? <one>Arginin</one>. []
91
+ - Wieviele <one>C-Atome</one> besitzt die Aminosäure <two>Aspartat</two>? <one>4</one>. URL: https://de.wikipedia.org/wiki/Asparagins%C3%A4ure []
92
+ - Wir können <one>NO</one> (<darkseagreen>Stickstoffmonoxid</darkseagreen>) aus einer Aminosäure synthetisieren. Aus welcher Aminosäure? <one>Arginin</one>. (<royalblue>Arginin</royalblue> → <royalblue>NO</royalblue>) []
93
+ - Nenne die Mitglieder der <one>Aminosäurenfamilie ausgehend von Alpha-Ketoglutarat (Alpha-Ketoglutaratfamilie)</one>, aus dem Citratzyklus. A: <one>Alpha-Ketoglutaratfamilie</one> <<cadetblue>4</cadetblue>> [<royalblue>EPQR</royalblue>] []
94
+ - Welche <one>vier Aminosäuren</one> haben <three>endständige NH₂-Gruppen</three> (gib auch die Kurzform der Aminosäuren an)? (1) <royalblue>Q</royalblue>: <one>Glutamin</one> (2) <royalblue>N</royalblue>: <one>Asparagin</one> (3) <royalblue>R</royalblue>: <one>Arginin</one> (4) <royalblue>K</royalblue>: <one>Lysin</one> []
95
+ - Name two aminoacids that can bind and release <one>protons</one> very efficiently. A: (1) <one>Aspartate</one> (<two>D</two>) (2) <one>Arginine</one> (<two>R</two>) []
96
+ - <one>Alpha-Ketobutyrat</one> entsteht aus welcher Aminosäure? <one>Threonin</one> (Summenformel von <one>Threonin</one>: <two>C₄H9NO₃</two>). []
97
+ - Die Aminosäure <one>Arginin</one> wurde im Jahre <two>1886</two> entdeckt. Warum dieser Name? Arginin <one>kristallisiert als Silbersalz aus</one> (<papayawhip>argentum</papayawhip>). []
98
+ - Wie heisst die lange Form der Aminosäure <one>DAP</one> (auf deutsch)? <one>Diaminopimelinsäure</one>. URL: https://de.wikipedia.org/wiki/2,6-Diaminopimelins%C3%A4ure []
99
+ - Name <one>two aminoacids</one> that are often found in <two>beta-turns</two>. A: (1) <one>glycine</one> (2) <one>proline</one> []
100
+ - The <one>charged amino acids</one> are ... (one letter code abbreviation)? <one>D-E-K-H-R</one>. []
101
+ - <one>Glycin</one> besitzt <two>wieviele C-Atome</two>? <one>2</one>. URL: https://de.wikipedia.org/wiki/Glycin []
102
+ - Which one is the <one>heaviest</one> among the twenty amino acids? <one>Tryptophan</one> - with about <mediumseagreen>~204 g per mol</mediumseagreen>. URL: https://en.wikipedia.org/wiki/Tryptophan []
103
+ - Was ist das Charakteristikum einer <one>D-Aminosäure</one>? Die <one>Aminogruppe</one> (<two>-NH₂</two>) liegt <three>auf der rechten Seite</three>. []
104
+ - How many different aminoacids can <one>participate in H-Bonds</one>? <one>11</one>. []
105
+ - In der Biochemie, bei den Aminosäuren: was bedeuten die Kürzel <one>B</one> und <one>Z</one>? Die stehen für je <royalblue>zwei mögliche Aminosäuren</royalblue>. (1) <two>B</two> steht für <one>Aspartic acid (E)</one> oder <one>Asparagine (N)</one>. (2) <two>Z</two> steht für <one>Glutamic acid (D)</one> oder <one>Glutamine (Q)</one>. []
106
+ - What is the end product of <one>leucine metabolism</one>? <one>Acetyl-CoA</one>. URL: https://en.wikipedia.org/wiki/Acetyl-CoA []
107
+ - Chemically, how does the <one>imidazole ring</one> of <two>Histidine</two> act? It <one>acts as a weak base</one>. []
108
+ - In <one>transcription-activation</one>, <two>histones</two> may be acetylated at which amino acid typically? <one>Lysine</one>. []
109
+ - Nenne die Mitglieder der <one>5-Phosphoglyceratefamilie</one>, aus der Glykolyse. A: <one>5-Phosphoglyceratefamilie</one> <<two>3</two>> [<mediumseagreen>SGC</mediumseagreen>] []
110
+ - Name the five amino acids that have <one>lipophilic</one> side-chains. A: <one>GAVLI</one> (1) <two>g</two><three>lycine</three> (2) <two>a</two><three>lanine</three> (3) <two>v</two><three>aline</three> (4) <two>l</two><three>eucine</three> (5) <two>i</two><three>soleucine</three> []
111
+ - <one>Cystein</one> ähnelt welcher anderen Aminosäure? <one>Serin</one>. []
112
+ - Name <three>two aminoacids</three> that would <one>strongly absorb UV light at 280 nm</one>. A: (1) <one>Tryptophan</one> (2) <one>Tyrosine</one> []
113
+ - <one>Lysin</one> hat wieviele <two>Methylengruppen</two> vor dem terminalen <three>NH₂-Rest</three>? <one>Vier</one> (<one>4</one>). URL: https://de.wikipedia.org/wiki/Lysin []
114
+ - Ist <one>Cystein</one> eine <two>polare Aminosäure</two>? Ja, aufgrund seiner <one>Thiolgruppe</one> (<royalblue>-SH</royalblue>). []
115
+ - Is <one>Valine</one> <two>very hydrophilic</two> or <two>very hydrophobic</two>? <one>Valine</one> is <two>very hydrophobic</two>. URL: https://en.wikipedia.org/wiki/Valine []
116
+ - Nenne die <one>6</one> <two>polaren, ungeladenen Aminosäuren</two>. A: <one>STN PCQ</one>. []
117
+ - Wie unterscheiden sich die Aminosäuren <one>Q</one> und <one>E</one>? (1) <one>Glutamin</one> ist <royalblue>Q</royalblue> und hat eine <two>-CO-NH₂ Gruppe</two>. (2) <one>Glutaminsäure</one> ist <royalblue>E</royalblue> und hat eine <two>-COOH Gruppe</two>. []
118
+ - Name four common <one>sulfur-containing amino acids</one>. A: (1) <one>Methionine</one> (2) <one>Cysteine</one> (3) <one>Homocysteine</one> (4) <one>Taurine</one> []
119
+ - In der geladenen Form innerhalb einer Zelle, gegeben ist eine Aminosäure wie zum Beispiel <one>Glycin</one>, wie nennen wir dessen zwei allgemeinen Seitenketten? (1) <one>Carboxylatform</one> <two>COO⁻</two> (2) <one>Ammoniumform</one> <two>NH₃⁺</two> []
120
+ - Welche <one>zwei Aminosäuren</one> finden wir in <two>Penicillin</two>? (1) <one>Cystein</one> (<royalblue>C</royalblue>) (2) <one>Valin</one> (<royalblue>V</royalblue>) []
121
+ - Die <one>Proteinphosphatase 1</one> dephosphoryliert welche Aminosäurereste? (1) <one>Serinreste</one> (<royalblue>S</royalblue>) - <two>von Proteinen</two> (2) <one>Threoninreste</one> (<royalblue>T</royalblue>) - <two>von Proteinen</two> []
122
+ - Nenne die <one>acht hydrophoben Aminosäuren</one> mittels Merkschema. A: <one>GAVLIMPF</one>. []
123
+ - Welchen Nachteil haben <one>chemisch synthetisierte Aminosäuren</one>? Sie sind <one>optisch inaktive Gemische von D und L-Isomeren</one>. []
124
+ - Name a role of the aminoacid <one>(γ, aka 'gamma') carboxyglutamic acid</one>. A: This aminoacid is <one>a part of some proteins involved in blood clotting</one>. URL: https://en.wikipedia.org/wiki/Carboxyglutamic_acid []
125
+ - Mnemo für die <one>ketogenen Aminosäuren</one>? Es sind hier <one>zwei Aminosäuren gemeint</one> - Mnemonic bezieht sich auf diese zwei Aminosäuren. <one>Angekettete Löwen lügen!</one> Angekettete (<one>Keto</one>) Löwen (<one>Leu</one>) lügen (<one>Lys</one>) → Leu und Lys (<royalblue>Leucin</royalblue> und <royalblue>Lysin</royalblue>). []
126
+ - Ein Molekulargewicht von <one>1 kDa</one> steht repräsentativ für etwa wieviele Aminosäuren? <one>1 kDa</one> repräsentieren in etwa <two>8 Aminosäuren</two>. []
127
+ - What is <one>the first N-terminal aminoacid</one> in a <two>prokaryotic protein</two>? <one>N-Formyl-Methionin</one>. URL: https://en.wikipedia.org/wiki/N-Formylmethionine []
128
+ - Welche drei Aminosäuren lassen sich im <one>Fibroin-Protein</one> finden? (1) <one>Alanin</one> (<one>A</one>) (2) <one>Glycin</one> (<one>G</one>) (3) <one>Serin</one> (<one>S</one>) []
129
+ - Nenne eine Aminosäure die eine <one>Indol-Gruppe</one> besitzt. A: <one>Tryptophan</one>. URL: https://de.wikipedia.org/wiki/Tryptophan []
130
+ - Haben alle 20 proteinogenen Aminosäuren ein <one>H Atom</one> am <two>C-alpha Atom</two>? Ja - <one>auch Prolin</one>. []
131
+ - Nenne eine einfache Konsequenz wenn <one>viele aromatische Aminosäuren</one> in einem Protein zu finden sind. A: Dieses Protein ist sehr wahrscheinlich <one>wasserunlöslich</one>. []
132
+ - Woher stammt das Wort <one>Cystein</one>? <one>Kystis</one> heisst <mediumseagreen>Blase</mediumseagreen>. (Cystein wurde 1887 entdeckt.) []
133
+ - Die <one>PPIasen</one> katalysieren die Isomersierung von <two>trans</two> zu <two>cis</two> Peptidbindungen bei welcher Aminosäure? <one>Prolin</one>. URL: https://de.wikipedia.org/wiki/Prolin []
134
+ - Nenne vier Aminosäuren mit zumindest einer <one>aliphatischen Seitenkette</one> - oder sogar sieben Aminosäuren. A: <one>AVLI</one> (<royalblue>G,A,V,L,I,M,P</royalblue>). []
135
+ - In der Biochemie: welche - und wieviele - <one>Aminosäuren</one> haben <two>pK Werte nahe des physiologischen pH Wertes</two> und können daher als <one>Säure- oder Basenkatalysatoren</one> funktionieren? Die folgenden <mediumseagreen>8 Aminosäuren</mediumseagreen>: <one>D-R-E-C-H-S-Y-K</one> (<two>Drechsack</two>). []
136
+ - Nenne eine Aminosäure mit einem <one>heterozyklischen Ring</one>. A: <one>Histidin</one> (<royalblue>His</royalblue>). []
137
+ - The aminoacid <one>cadaverine</one> originates from the amino acid <three>lysine</three>. Which chemical step(s) have to be done for this aminoacid to arise? A <one>decarboxylation</one> step has to occur for <three>cadaverine</three> to form. URL: https://en.wikipedia.org/wiki/Cadaverine []
138
+ - <one>Alpha-Ketoglutarat</one> ist mit welcher Aminosäure strukturell verwandt? <one>Glutamat</one> (Mnemonic: <royalblue>glutarat ... glutamat</royalblue>). Glutamat hat auch <one>5 C-Atome</one>. URL: https://de.wikipedia.org/wiki/Glutamins%C3%A4ure []
139
+ - What is the name of the <one>22nd amino acid</one>? <one>Pyrrolysine</one>. URL: https://en.wikipedia.org/wiki/Pyrrolysine []
140
+ - Which aminoacid is <one>the most expensive one to create</one>, viewed from the point of view of bioenergetics? <one>Tryptophan</one>. URL: https://en.wikipedia.org/wiki/Tryptophan []
141
+ - We can give <one>Tyrosine</one> another name, chemically correct. Which one is that? <one>4-hydroxy-phenylalanine</one>. URL: https://en.wikipedia.org/wiki/Tyrosine []
142
+ - Viele Spezies können <one>welche Aminosäure</one> zu <two>Nicotinsäure</two> abbauen? <one>Tryptophan</one>. URL: http://www2.chemie.uni-erlangen.de/projects/vsc/chemie-mediziner-neu/vitamine/bilder/nicotinsaeure.gif []
143
+ - <one>NO</one> (<two>Stickstoffmonoxid</two>) ist ein Abbauprodukt von .. ? <one>Arginin</one>. []
144
+ - The <one>carboxyl group</one> of amino acids has <two>a pK value</two> of ...? Near <one>7.2</one>. []
145
+ - Are aminoacids in their <one>neutral form</one> when they are in a <two>aqueous solution</two>? <two>No</two>, <one>never</one>. []
146
+ - Was sind <one>Monoaminodicarbonsäuren</one>? Diese Aminosäuren besitzen <mediumseagreen>zwei Carboxygruppen</mediumseagreen>. Die beiden Beispiele sind <one>Asparaginsäure</one> und <one>Glutaminsäure</one>. URL: https://de.wikipedia.org/wiki/Carboxygruppe []
147
+ - The connective tissue protein <one>elastin</one> also has a high percentage of <two>which two aminoacids</two>? (1) <one>Alanine</one> (<royalblue>A</royalblue>) (2) <one>Glycine</one> (<royalblue>G</royalblue>) []
148
+ - Welche Aminosäure hat eine <one>bicyclische Indolgruppe</one>? <one>Tryptophan</one>. URL: https://de.wikipedia.org/wiki/Tryptophan []
149
+ - Plants and micro-organisms must synthesize their <one>aromatic amino acids</one> through which pathway? Through the <one>shikimate pathway</one>. (Animals obtain them through their diet.) URL: https://en.wikipedia.org/wiki/Shikimate_pathway []
150
+ - <one>L-Homocystein</one> kann entstehen wenn welche Aminosäure abgebaut wird? <one>Methionin</one>. URL: https://de.wikipedia.org/wiki/Methionin []
151
+ - Formel des Rests bei der <one>L-Asparaginsäure</one>? <one>-CH₂-COOH</one> URL: https://de.wikipedia.org/wiki/Asparagins%C3%A4ure []
152
+ - Which amino acids contain <one>secondary amino groups</one>? Only <one>Proline</one> (<royalblue>-NH-</royalblue>). URL: https://en.wikipedia.org/wiki/Proline []
153
+ - Nenne eine allgemeine Möglichkeit, wie <one>nichtproteinogene Aminosäuren</one> von der Zelle synthetisiert werden können. A: Zum Beispiel mit Hilfe von <one>nichtribosomalen Peptidsynthetasen</one>. URL: https://de.wikipedia.org/wiki/Peptid#Nichtribosomale_Peptidsynthese []
154
+ - <one>1805</one> wurde welche Aminosäure entdeckt? <one>Asparagin</one>. URL: https://de.wikipedia.org/wiki/Asparagin []
155
+ - Welche Aminosäure hat einen <one>Guanidylrest</one>? <one>Arginin</one>. URL: https://de.wikipedia.org/wiki/Arginin []
156
+ - In Enzymen: kann <one>Glycin</one> mit seiner Aminosäureseitenkette <two>Übergangsmetallionen</two> koordinativ binden? Nein. []
157
+ - <one>Penicillin</one> is derived from which <two>two aminoacids</two>? (1) <one>cysteine</one> (2) <one>valine</one> []
158
+ - Welche Aminosäure hat insgesamt nur <one>zwei C-Atome</one>? <one>Glycin</one>. URL: https://de.wikipedia.org/wiki/Glycin []
159
+ - Eine <one>Transaminierung von Alpha-Ketoglutarat</one> führt zur Bildung welcher Aminosäure? <one>Glutamat</one>. []
160
+ - <one>Histidine</one> can be converted to <two>histamine</two> by the enzyme <three>histidine decarboxylase</three>. What does it lose in the process? A <one>CO₂ group</one>. URL: https://en.wikipedia.org/wiki/Histidine_decarboxylase []
161
+ - Can we find <one>D-Aspartate</one> in <two>mammals</two>? Yes we can. []
162
+ - Nenne zwei <one>biogene Amine</one> inklusive die Aminosäure. A: (1) <one>Histamin</one>: aus <royalblue>Histidin</royalblue> (2) <one>Serotonin</one>: aus <royalblue>Tryptophan</royalblue> []
163
+ - Welche <one>zwei Aminosäuren</one> sind <two>nicht degeneriert</two>? A: (1) <one>Methionin</one> (2) <one>Tryptophan</one> []
164
+ - In <one>Proteinen</one> findet man nur welche Aminosäuren? Nur <one>L-Aminosäuren</one>. []
165
+ - Welche Aminosäure besitzt den höchsten <one>pKS Wert</one>? <one>Arginin</one>. URL: https://de.wikipedia.org/wiki/Arginin []
166
+ - Gib die Formel für die <one>endständige, terminale Gruppe</one> bei <three>Lysin</three> <two>ausserhalb der Zelle</two> an. A: <one>-NH₂</one> URL: https://en.wikipedia.org/wiki/Lysin []
167
+ - Nenne zwei <one>destabilisierende Aminosäuren</one>, die <lightseagreen>N-terminal</lightseagreen> die Stabilität von Proteinen herabsetzen können. A: (1) <one>Leucin</one> (<royalblue>L</royalblue>) (2) <one>Phenylalanin</one> (<royalblue>F</royalblue>) []
168
+ - Je höher der <one>Hydropathy-Index</one> desto ... ? A: <one>Hydrophober ist diese Aminosäure</one>. URL: https://en.wikipedia.org/wiki/Hydrophilicity_plot []
169
+ - Der <one>pKs Wert</one> von Aminosäuren beträgt in etwa ... ? Etwa <one>9</one> - ist also <two>relativ hoch</two>. []
170
+ - Die <one>Grundstruktur von Prolin</one> findet sich in welch anderer organischen Struktur wieder? In <one>Pyrrolidin</one>. https://upload.wikimedia.org/wikipedia/commons/3/38/Pyrrolidine_svg.svg []
171
+ - Which aminoacids are <one>negatively charged</one> inside of a living cell? (1) <one>Aspartate</one> (2) <one>Glutamate</one> []
172
+ - Nenne <one>zwei</one> <two>für Säuglinge essentielle Aminosäuren</two>. A: Mnemonic: <royalblue>Harg</royalblue> ... <mediumseagreen>arge Säuglinge</mediumseagreen> (1) <one>Histidin</one> (2) <one>Arginin</one> []
173
+ - Normaler Zustand der <one>Aminogruppen</one> innerhalb der Zelle? A: <one>NH₃⁺</one> - sie sind somit <one>positiv geladen</one>; <two>ionisiert</two>. []
174
+ - The substance <one>indoleacetic acid</one> originates from which amino acid? From <one>tryptophan</one>. URL: https://en.wikipedia.org/wiki/Tryptophan []
175
+ - Wodurch unterscheidet sich <one>Asparagin</one> von <one>Asparaginsäure</one>? (1) <one>Asparagin</one> besitzt eine charakteristische <two>-CO-NH₂ Gruppe</two>. (2) <one>Asparaginsäure</one> besitzt eine charakteristische <two>-COOH Gruppe</two>. []
176
+ - Vor allem welche Aminosäuren haben die <one>Säugetiere</one> eingespart? Vor allem <mediumseagreen>komplexere Aminosäuren</mediumseagreen> - also <one>aromatische</one> und <one>verzweigtkettige</one> Aminosäuren. []
177
+ - Die dominierende Konformation der Amidbindung ist <one>cis</one> oder <one>trans</one>? <one>Trans</one>. []
178
+ - Der <one>Harnstoffzyklus</one> synthetisiert, ausgehend von Ornithin, welche Aminosäure? <one>Arginin</one>. []
179
+ - Nenne eine Aminosäure mit einer <one>heterozyklischen R-Gruppe</one>. A: <one>Histidin</one>. URL: https://de.wikipedia.org/wiki/Histidin []
180
+ - Im <cadetblue>3-Buchstaben Code der Aminosäuren</cadetblue> können wir eine Sequenzfolge wie <one>H-Ala-Lys-Glu-Tyr</one> sehen. Was bedeutet das <two>H</two> hier? Das <two>H</two> am linken, aminoterminalen Ende stellt einen <one>unmodifizierten N-Terminus</one> dar. []
181
+ - In der Aminosäure <one>Pyrrolysin</one> finden wir welch andere Aminosäure? <one>Lysin</one> - und zwar <one>zwei</one> davon. []
182
+ - In Proteinen findet man nur <one>L-Aminosäuren</one>. Als <two>absolute Konfiguration</two> haben diese L-Aminosäuren (fast) immer welche Konfiguration? Die <one>S-Konfiguration</one>. (Mnemonic: <royalblue>S</royalblue> ... <royalblue>schönes Leben!</royalblue>) []
183
+ - Wie muss <one>L-Phenylalanin</one> im menschlichen Körper verändert werden, damit die proteinogene Aminosäure <two>L-Tyrosin</two> entstehen kann? <one>L-Phenylalanin</one> muss <two>4-hydroxyliert</two> werden. []
184
+ - <one>Kollagen</one> wird aufgebaut aus welchen 3 Aminosäuremotiven? A: <one>Glycin-X-Y</one> (X und Y sind andere Aminosäuren, meistens <two>Glycin-Prolin-Hydroxyprolin</two>) []
185
+ - Welche <one>zwei Aminosäuren</one> können leicht durch Hitze zerstört werden? A: Jene mit einer <mediumseagreen>Carboxamidgruppe</mediumseagreen>, also: (1) <one>Asparagin</one> (2) <one>Glutamin</one> []
186
+ - Nenne eine Aminosäure, die an der <one>Synthese von Phosholipiden</one> beteiligt ist. A: <springgreen>Serin</springgreen> - bei <one>Phosphatidylserin</one>. URL: https://en.wikipedia.org/wiki/Phosphatidylserine []
187
+ - Which amino acid is typically used if we wish to use an <one>inert substitution</one>, as part of a <two>mutational study</two>? <one>Alanine</one>. URL: https://en.wikipedia.org/wiki/Alanine []
188
+ - The <one>isoelectric point</one> of an amino acid is defined as the pH ... A: where that molecule <one>carries no electric charge</one>. []
189
+ - Wo wurde die Aminosäure <one>Threonin</one> zuerst entdeckt? Im Zucker <one>Threose</one>. URL: https://en.wikipedia.org/wiki/Threose []
190
+ - What is meant with the term <one>essential amino acid</one>? This is one that <one>the body cannot synthesize</one>. []
191
+ - <one>Alpha-Ketoglutarat</one> ist mit welcher Aminosäure verwandt? Mit der <one>Glutaminsäure</one>. Beide haben <two>5 C-Atome</two>. URL: https://de.wikipedia.org/wiki/%CE%91-Ketoglutars%C3%A4ure []
192
+ - Who was the person who has invented the <one>one-letter aminoacid code</one>? <one>Margaret Dayhoff</one>. URL: https://en.wikipedia.org/wiki/Margaret_Oakley_Dayhoff []
193
+ - What is the <one>biggest</one>, as in <one>the heaviest</one>, aminoacid? <one>Tryptophan</one>. URL: https://en.wikipedia.org/wiki/Tryptophan []
194
+ - Besitzt <one>Tryptophan</one> mehr N-Atome in seinem charakteristischen Rest als <one>Histidin</one>? Nein. []
195
+ - Was ist <one>Aspartat</one>? <one>Asparaginsäure</one>. URL: https://de.wikipedia.org/wiki/Asparagins%C3%A4ure []
196
+ - <one>Tryptophan</one> hat <two>n N-Atome</two>, in seinem charakteristischen Rest? <one>1</one>. URL: https://upload.wikimedia.org/wikipedia/commons/thumb/c/c1/L-Tryptophan_-_L-Tryptophan.svg/1200px-L-Tryptophan_-_L-Tryptophan.svg.png []
197
+ - <one>How many</one> of the 20 canonical aminoacids are <two>aromatic</two>? <one>4</one>. []
198
+ - Name the two most <one>hydrophobic amino acids</one>. A: (Mnemonic: <springgreen>Iso-Val</springgreen>) (1) <one>isoleucine</one> (2) <one>valine</one> []
199
+ - Welche Aminosäuren (alle nennen) gehören zur <one>Pyruvat-Familie</one>? (1) <one>A</one> (2) <one>V</one> (3) <one>L</one> []
200
+ - Bei der <one>bakteriellen Zellwand</one>, als Teil des <lightseagreen>glycan tetrapeptide</lightseagreen>: <peru>welche Aminosäure</peru> kommt sowohl in D- als auch in L-Form vor? <one>L</one>/<one>D-Alanin</one>. []
201
+ - Nenne eine Aminosäure, die ihre <one>NH₃⁺-Gruppe</one> im Zuge einer <two>Transaminierung</two> spendet. A: <one>Alanin</one>. URL: https://de.wikipedia.org/wiki/Alanin []
202
+ - Was ist die durchschnittliche, relative <one>Molekülmasse einer einzelnen Aminosäure</one>, wenn diese in einem Protein gebunden vorliegt? <one>110 Dalton</one>. []
203
+ - <one>Carbamoylphosphat</one> wird zur Synthese welcher Aminosäure benötigt? <one>Arginin</one>. URL: https://de.wikipedia.org/wiki/Carbamoylphosphat []
204
+ - The aminoacid <one>tryptophan</one> was discovered in the year <three>1901</three>, in Cambridge. How? A <one>tryptic digest of casein</one> was used. URL: https://en.wikipedia.org/wiki/Casein []
205
+ - Welche Aminosäuren sind <one>sauer</one>? (1) <one>Asparaginsäure</one> (2) <one>Glutaminsäure</one> []
206
+ - In the <one>one-letter aminoacid code</one>: what does <two>X</two> mean? <one>Undetermined amino acid</one>. []
207
+ - What is <one>a privileged amino acid</one>? This is an amino acid with <one>more than 4 codons</one>. []
208
+ - Der Neurotransmitter <one>GABA</one> leitet sich ab von welcher Aminosäure? <one>Glutamat</one> (Mnemonic: <royalblue>GABA-Gluta</royalblue>). URL: https://de.wikipedia.org/wiki/%CE%93-Aminobutters%C3%A4ure []
209
+ - Die Aminosäure <one>Cystein</one> trägt welche <two>R-Gruppe</two> (R)? <one>-CH₂-SH</one>. []
210
+ - Wieso heisst die Aminosäure <one>Glycin</one> so? Der Name kommt aufgrund ihres <one>süssen Geschmacks</one>. []
211
+ - Wer ist bei Proteinen der <one>Helixbrecher</one>? <one>Prolin</one>. URL: https://de.wikipedia.org/wiki/Prolin#Funktionen []
212
+ - <one>Homoserin</one> und <one>Homocystein</one> haben welche Tendenz und welche Konsequenz ergibt sich dadurch? Homoserin und Homocystein neigen dazu spontan zu <one>Fünferringen</one> zu reagieren. Dies ist in Proteinen schlecht, daher findet man <two>Serin</two> und <two>Cystein</two> in Proteinen, die dafür nicht anfällig sind. []
213
+ - <one>Histidin</one> bindet vor allem an welches <two>Metall</two>? <one>Nickel</one>. URL: https://en.wikipedia.org/wiki/Polyhistidine-tag []
214
+ - Was wird aus <one>Alanin</one> wenn die <two>Aminogruppe</two> entfernt wird? <one>Pyruvat</one>. URL: https://de.wikipedia.org/wiki/Pyruvate []
215
+ - For <one>Coomassie staining</one>: which particular aminoacid is very important? <one>Arginine</one>; so in proteins without arginine, <two>a detection problem may exist</two>. (Mnemonic: <royalblue>Carginine</royalblue>) []
216
+ - Warum nimmt <one>Methionin</one> eine Sonderstellung unter den Aminosäuren ein? Da <one>D-Methionin</one> <two>im Tierkörper</two> in <one>L-Methionin</one> konvertiert werden kann. []
217
+ - Welche Aminosäure ist wichtig bei der <one>Synthese von Porphyrinen</one>? <one>Glycin</one>. URL: https://de.wikipedia.org/wiki/Porphyrine []
218
+ - Wieso benötigt der Mensch die Aminosäure <one>Ornithin</one>? Der Mensch benötigt diese Aminosäure <one>für die Bildung von Harnstoff</one>. URL: https://de.wikipedia.org/wiki/Ornithin []
219
+ - The peptide <one>alanylglutamylglycylalanylleucine</one> has how many <two>peptide bonds</two>? <one>Four</one> (<royalblue>4</royalblue>). []
220
+ - Eine <one>basische Aminosäure</one> hat einen <two>isoelektrischen Punkt</two> der wo liegt? Der liegt <one>sehr hoch</one>. []
221
+ - Aus <one>Glutamat-gamma-semialdehyd</one> wird (primär) welche Aminosäure? <one>Prolin</one>. URL: https://en.wikipedia.org/wiki/Glutamate-5-semialdehyde []
222
+ - Nenne <one>Konstitutionsisomere</one> unter den Aminosäuren. A: (1) <one>Leucin</one> (2) <one>Isoleucin</one> []
223
+ - <one>Adrenalin</one> ähnelt sehr stark welcher Aminosäure? <one>Tyrosin</one>. URL: https://de.wikipedia.org/wiki/Adrenalin []
224
+ - Die Aminosäure <one>Prolin</one> ist was für eine Säure? <two>Prolin</two> ist eine <one>Iminosäure</one>. []
225
+ - Nenne <one>zwei Aminosäuren</one>, die aus <two>3-Phosphoglycerat</two>, einem Intermediat der Glycolyse, synthetisiert werden. A: (1) <one>Glycin</one> (2) <one>Serin</one> []
226
+ - Nenne zwei Aminosäuren mit einer <one>Carboxylseitengruppe</one> in der Zelle. A: (1) <one>Aspartat</one> (2) <one>Glutamat</one> []
227
+ - Nenne zwei <one>Mercaptoaminosäuren</one>. A: (1) <one>Cystein</one> (2) <one>Methionin</one> []
228
+ - Welche Ladung hat <one>Histidin</one> bei einem pH-Wert von <two>7.0</two>? Bei einem <peru>pH Wert von 7.0</peru> (== der <one>physiologische pH-Wert</one>) trägt Histidin bereits eine <one>positive Ladung</one>. []
229
+ - Das <one>Canavanin</one> ähnelt welcher Aminosäure? <one>Arginin</one> (Mnemonic: <royalblue>Arginin</royalblue> klingt sehr ähnlich zu <one>Canavanin</one>). []
230
+ - <one>Tryptophan</one> hat die größte Absorption bei <royalblue>280 nm</royalblue>. Histidin hingegen absorbiert bei wieviel nm? Histidin absorbiert bei <springgreen>211 nm</springgreen>. Dies ist auch die Grundlage, um Proteinkonzentrationen mit Hilfe der <one>UV</one>/<one>VIS-Spektroskopie</one> zu messen. []
231
+ - Jeder <one>pKs-Wert einer Aminosäure</one> ist womit verbunden? Mit einer <one>Pufferzone</one>. []
232
+ - <one>Cystein</one> wird über welche Substanz abgebaut? <one>Pyruvat</one>. []
233
+ - <one>Glyphosat</one> ist mit welcher Aminosäure verwandt? <one>Glycin</one>; es ist von der Struktur her eigentlich ein Glycin mit einer <royalblue>-PO3 Gruppe</royalblue>. (Mnemonic: Beide beginnen mit dem Buchstaben <royalblue>G</royalblue>.) URL: https://de.wikipedia.org/wiki/Glyphosat []
234
+ - Andere Bezeichnung für die drei Aminosäuren <one>Tyrosin</one>, <one>Serin</one> und <one>Threonin</one>? Dies sind die <one>Hydroxy-Aminosäuren</one>. []
235
+ - <one>Tyrosin</one> ist keine essentielle Aminosäure. Sie kann ausgehend von welch anderer Aminosäure gebildet werden? <one>Phenylalanin</one>. []
236
+ - Der Abstand zwischen benachbarten Aminosäuren in der <one>Alpha-Helix</one> und bei <one>Beta-Faltblättern</one> beträgt wieviel, <three>in nm</three>? (1) <one>Alpha-Helix</one>: nur <two>0.10 nm</two> (2) <one>Beta-Faltblatt</one>: <two>0.35 nm</two> []
237
+ - <one>Kolloidales Gold</one> hat eine hohe Affinität für welche Aminosäure? <one>Cystein</one> - aufgrund dessen <royalblue>Thiolgruppe</royalblue>. URL: https://de.wikipedia.org/wiki/Kolloidales_Gold []
238
+ - Die mit am weitesten verbreitete und vielleicht auch <one>sinnvollste Klassifizierung der Aminosäuren</one> erfolgt gemäß der ... ? Der <one>Polarität ihrer Seitenketten</one>. []
239
+ - <one>NO</one> in der Zelle wird aus welcher Aminosäure gebildet? Aus <one>L-Arginin</one>. []
240
+ - <one>Melatonin</one> wird aus welcher Aminosäure vom Körper synthetisiert? <one>Tryptophan</one>. URL: https://en.wikipedia.org/wiki/File:Melatonin.svg []
241
+ - Wer ist schwerer von den beiden - <one>Cystein</one> oder <one>Homocystein</one>? <one>Homocystein</one> ist schwerer; es <two>hat eine CH₂-Gruppe mehr</two>. []
242
+ - <one>Glutamin</one> hat <two>wieviele Methylengruppen</two> in seinem charakteristischen Rest? <one>Zwei</one> (<one>2</one>). []
243
+ - <one>Histidin</one> hat wieviele charakteristische N-Atome im <two>Rest-Anteil</two>? Der <royalblue>Histidin-Ring</royalblue> besitzt <one>2 N-Atome</one> in seinem spezifischen Rest. URL: https://upload.wikimedia.org/wikipedia/commons/c/c0/L-Histidine_physiological.svg []
244
+ - Der <three>Vorläufer</three> von <one>Phenylalanin</one> und <one>Tyrosin</one> ist ... ? Die <one>Prephensäure</one>. URL: https://www.spektrum.de/lexikon/biochemie/prephensaeure/5017 []
245
+ - Welche Aminosäure ist <one>am seltensten in Proteinen</one> zu finden? <one>Tryptophan</one>. []
246
+ - <one>Welche Aminosäure</one> hat eine <two>Aminobutyl-Seitenkette</two>? <one>Lysin</one>. URL: https://de.wikipedia.org/wiki/Lysin []
247
+ - Die <one>Glutaminsäure</one> hat wieviele C Atome? <one>5</one>. URL: https://de.wikipedia.org/wiki/Glutamins%C3%A4ure []
248
+ - <one>D-Alanine</one> and <one>L-Alanine</one> are technically known as ...? <one>Enantiomers</one>. URL: https://en.wikipedia.org/wiki/Enantiomer []
249
+ - Welche Aminosäure hat den höchsten, welche den niedrigsten Wert, in Bezug auf den <one>Hydropathie-Wert</one>? (1) <one>Isoleucin</one> hat den <two>höchsten Wert</two>, mit <royalblue>+4.5</royalblue>. (2) <one>Arginin</one> hat den <two>niedrigsten Wert</two>, mit <royalblue>-4.5</royalblue>. []
250
+ - Welche <one>Aminosäuren</one> haben <two>polare Seitenketten</two>? <one>S,T,N - P,C,Q</one>. []
251
+ - Nenne die Mitglieder der <one>Aminosäurenfamilie ausgehend von Oxalacetat (Oxalacetatfamilie)</one>, aus dem Citratzyklus. A: <one>Oxalacetatfamilie</one> <<royalblue>6</royalblue>> [<peru>DNMKTI</peru>] []
252
+ - <one>Histidin</one> hat in seiner Seitengruppe wieviele <two>N-Atome</two>? <one>2</one>. URL: http://www.mpipks-dresden.mpg.de/mpi-doc/quantumchemistry/ChemieAlltag/Histidin/histidin-formel.jpeg []
253
+ - Which amino acid is very important for <one>Keratin</one>? The amino acid <one>cysteine</one>. URL: https://en.wikipedia.org/wiki/Keratin []
254
+ - In regards to amino acids: what does the abbreviation <one>SLC</one> stand for? <one>Single-letter code</one> - aka, <royalblue>G</royalblue> for <one>Glycine</one>. []
255
+ - Nenne die beiden Aminosäuren, die <one>nicht degeneriert</one> sind. A: (1) <one>Tryptophan</one> (<two>W</two>) (2) <one>Methionin</one> (<two>M</two>) []
256
+ - Which <one>chemical group</one> can be found in a <two>cysteine</two>? A <one>sulfhydryl group</one> <two>-SH</two>. URL: https://en.wikipedia.org/wiki/Cysteine []
257
+ - Die durchschnittliche Masse einer einzelnen Aminosäure, gebunden vorliegend in einem Protein, beträgt wie viel <one>kDa</one>? <one>0.11 kDa</one>. []
258
+ - Welche Aminosäure wurde <one>zuerst entdeckt</one>? <one>Asparagin</one>, und zwar im Jahre <two>1805</two>. URL: https://de.wikipedia.org/wiki/Asparagin []
259
+ - Wann wurde die Aminosäure <one>Pyrrolysine</one> entdeckt? Im Jahre <one>2002</one>, in dem Archaea <two>Methanosarcina barkeri</two>. URL: https://en.wikipedia.org/wiki/Pyrrolysine#Genetics []
260
+ - The <one>formation of a peptide bond</one> between two amino acids is an example of <two>what kind of reaction</two>? It is <one>a condensation reaction</one>. []
261
+ - Which among the twenty amino acids is <one>the heaviest</one>? <one>Tryptophan</one> is the heaviest among the 20 canonical amino acids. URL: https://en.wikipedia.org/wiki/Tryptophan []
262
+ - Why does <one>Tyrosine</one> have that name? The word <one>tyros</one> means <mediumseagreen>cheese</mediumseagreen> in the greek language. URL: https://en.wikipedia.org/wiki/Tyrosine []
263
+ - Beim Zeichnen der <one>proteinogenen Aminosäuren</one> in <orchid>2D</orchid>: wo ist konventionsgemäss die <two>Aminogruppe</two> (+NH₃ Gruppe) zu finden und wo die <two>Carboxygruppe</two>? (1) Die <one>Aminogruppe</one> ist auf der <mediumseagreen>linken</mediumseagreen> Seite zu finden. (2) Die <one>Carboxygruppe</one> ist <mediumseagreen>oben</mediumseagreen> zu finden. []
264
+ - <one>PRPP</one> spielt bei der Biosynthese welcher Aminosäure eine wichtige Rolle? <two>PRPP</two> ist wichtig bei der Biosynthese von <one>Histidin</one>. URL: https://en.wikipedia.org/wiki/Histidine#Biosynthesis []
265
+ - Which aminoacid <one>does not want to be optically active</one>? <one>Glycine</one>. URL: https://en.wikipedia.org/wiki/Glycine []
266
+ - Assume that we have just found a <peru>rare</peru> <one>cis-peptide bond</one> in a protein. <two>Which amino acid</two> may be the most likely culprit for this phenomenon? <one>Proline</one>. URL: https://en.wikipedia.org/wiki/Proline []
267
+ - <one>Aminosäuren</one> sind was für <three>Säuren</three>? <one>Aminosäuren</one> sind <two>Aminocarbonsäuren</two>. URL: https://www.chemie.de/lexikon/Aminos%C3%A4uren.html []
268
+ - Was meinen wir mit <one>glucogenen Aminosäuren</one>? Dies sind Aminosäuren, die - <one>bei Nahrungsmangel</one> - zur <mediumseagreen>Gluconeogenese</mediumseagreen> beitragen. []
269
+ - Die <one>R-Gruppe</one> bei <two>Methionin</two> ist ... ? <one>-CH₂-CH₂-S-CH₃</one>. []
270
+ - <one>Tryptophan</one> hat in Summe wieviele <cadetblue>N-Atome</cadetblue>? <one>2</one>. []
271
+ - Wenn <one>Serin</one> desaminiert wird, entsteht was? <one>Pyruvat</one>. URL: https://de.wikipedia.org/wiki/Pyruvat []
272
+ - Welche Aminosäure ist dem <one>Pyruvat</one> sehr ähnlich? <one>Alanin</one>. URL: https://de.wikipedia.org/wiki/Alanin []
273
+ - Nenne ein Beispiel für eine <one>Dicarbonsäure</one> unter den Aminosäuren. A: Die <one>Glutaminsäure</one>. []
274
+ - Der <one>Dissoziationsgrad</one> einer Aminosäure ist wovon abhängig? Von dem <one>pH-Wert</one>. Beispiel: pH 1 führt zu ionisierten <two>-NH₃⁺-Gruppen</two>. []
275
+ - Nenne die Mitglieder der <one>Aminosäurenfamilie ausgehend von Pyruvat (Pyruvatfamilie)</one>, <three>aus der Glykolyse</three>. A: <one>Pyruvatfamilie</one> <<peru>3</peru>> [<royalblue>AVL</royalblue>] []
276
+ - Von den drei Aminosäuren <one>F, Y, W</one>: welche ist warum <two>am hydrophobsten</two>? <one>Phenylalanin</one>. Es hat keine OH oder NH Gruppe, im Gegensatz zu <royalblue>Y</royalblue> oder <royalblue>W</royalblue>. []
277
+ - Welche Aminosäure kann keine <one>Alpha-Helix</one> bilden? <one>Prolin</one>. []
278
+ - Which aminoacid <one>absorbs UV light</one> the most? <one>Tryptophan</one> (<royalblue>W</royalblue>). URL: https://en.wikipedia.org/wiki/Tryptophan []
279
+ - Das <one>mittlere Molekulargewicht einer einzelnen freien Aminosäure</one> beträgt, <two>in Dalton</two> ... ? <one>138</one>. []
280
+ - Ist <one>Asparagin</one> oder <one>Glutamin</one> schwerer? <one>Glutamin</one>. []
281
+ - Welche Aminosäure wird ausgehend von <one>Ribose-5-Phosphate</one> synthetisiert? Nur eine Aminosäure, und zwar <royalblue>H</royalblue>, also <one>Histidin</one>. []
282
+ - Welche Aminosäure ist wichtig für die <one>Hämsynthese</one>? <one>Glycin</one>. URL: https://de.wikipedia.org/wiki/H%C3%A4me_%28Stoffgruppe%29#Biosynthese []
283
+ - Nenne eine <one>achirale Aminosäure</one>. A: <one>Glycin</one>. URL: https://de.wikipedia.org/wiki/Glycin []
284
+ - Name two aminoacids that would carry <one>a negative charge</one> on their side chain at a <two>pH 8.0</two>. A: (1) <one>Aspartate</one> (2) <one>Glutamate</one> []
285
+ - The <one>level of plasma glutamine</one> changes how after <peru>athletes</peru> <two>perform lengthy endurance exercises</two>? The level of plasma glutamine <mediumpurple>will decrease significantly</mediumpurple> <one>after endurance-exercises</one>. []
286
+ - Wo wurde die Aminosäure <one>Glutamat</one> entdeckt? Im Pflanzenprotein <one>Gluten</one>. URL: https://de.wikipedia.org/wiki/Gluten []
287
+ - Alle proteinogenen Aminosäuren sind <one>primäre Amine</one>, mit der einzigen Ausnahme von ... ? <one>Prolin</one>. URL: https://de.wikipedia.org/wiki/Prolin []
288
+ - Aus welcher Aminosäure entsteht <one>Histamin</one>? Aus <one>Histidin</one>. URL: https://de.wikipedia.org/wiki/Histamin#Biosynthese []
289
+ - Welche Aminosäure hat <one>drei ionisierbare Gruppen</one>? <one>Histidin</one>. URL: https://de.wikipedia.org/wiki/Histidin []
290
+ - Nenne eine Aminosäure mit einer <one>Aminobutyl-Seitenkette</one>. A: <one>Lysin</one>. URL: https://de.wikipedia.org/wiki/Lysin []
291
+ - <one>Leucin</one> und <one>Lysin</one> sind rein ketogene Aminosäuren. Welcher Ketonkörper entsteht hierbei letzten Endes? <one>Acetoacetat</one>. URL: https://en.wikipedia.org/wiki/Acetoacetic_acid []
292
+ - In any given <one>random enzyme</one>, <two>which particular aminoacid</two> may be the most likely to be found at its active site? <one>Histidine</one>. []
293
+ - The favourite aminoacid for <one>pyridoxal phosphate</one> is ... ? <one>Lysine</one>. It can then <two>form a Schiff base</two>. []
294
+ - <one>Mammals</one> synthesize <two>tyrosine</two> from which other amino acid? From <one>phenylalanine</one>. []
295
+ - <one>Epinephrin</one> geht aus welcher Aminosäure hervor? <one>Tyrosin</one> (Merkhilfe: Epinephrin ist Adrenalin und Adrenalin ähnelt strukturell dem Tyrosin). URL: https://en.wikipedia.org/wiki/Adrenaline []
296
+ - Die <one>Guanidinogruppe</one>, die man zum Beispiel bei <two>Arginin</two> findet, besitzt wieviele N Atome? <one>3</one>. URL: https://de.wikipedia.org/wiki/Guanidin []
297
+ - <one>Dopamine</one> leitet sich von welcher Aminosäure ab? <one>Tyrosin</one>. (Mnemonic: <royalblue>Dopo-Tyro</royalblue>) URL: https://en.wikipedia.org/wiki/Dopamine []
298
+ - Nenne <one>die essenziellen Aminosäuren für den Menschen</one> mittels Merkslogan. A: Es gibt <royalblue>9 essentielle Aminosäuren</royalblue>. <one>Phänomenale Isolde Will Mit Tir Vielleicht Heute Läuse Kämmen</one> (<peru>F,I,W,M,T,V,H,L,K</peru>). []
299
+ - Welche Aminosäure ist am <one>Harnstoffzyklus</one> beteiligt? <one>Arginin</one>. URL: https://de.wikipedia.org/wiki/Arginin []
300
+ - Name the <one>aromatic aminoacids</one>, including their respective one-letter code. A: (1) <one>Phenylalanine</one> ... <mediumturquoise>F</mediumturquoise> (2) <one>Tyrosine</one> ... <mediumturquoise>Y</mediumturquoise> (3) <one>Tryptophan</one> ... <mediumturquoise>W</mediumturquoise> (4) <one>Histidine</one> ... <mediumturquoise>H</mediumturquoise> []
301
+ - Nenne eine <one>Aminosäure</one> mit einer <two>Thioethergruppe</two>. A: <one>Methionin</one>. URL: https://de.wikipedia.org/wiki/Methionin []
302
+ - Nenne vier <one>saure Aminosäuren</one>. A: (1) <one>Asparagin</one> (2) <one>Asparaginsäure</one> (3) <one>Glutamin</one> (4) <one>Glutaminsäure</one> []
303
+ - <one>3-Phosphoglycerate</one> ist <two>die Vorstufe</two> für welche <three>drei Aminosäuren</three>? (<royalblue>SGC</royalblue>) (1) <one>Serin</one> (2) <one>Glycin</one> (3) <one>Cystein</one> []
304
+ - Welche Aminosäure <one>verkürzt die Lebensdauer von Proteinen drastisch</one> (wirkt also <cadetblue>destabilisierend</cadetblue> auf das Protein), sofern sie <two>N-terminal</two> angeheftet wird? <one>Arginin</one>. []
305
+ - Ist <one>Leucin</one> oder <one>Isoleucin</one> <two>schöner</two>? <one>Leucin</one> - es ist <two>symmetrischer</two> als <one>Isoleucin</one>. []
306
+ - Nenne <three>zwei Aminosäuren</three>, die von nur <one>einem Triplett</one> kodiert werden. A: (1) <one>Methionin</one> (<royalblue>M</royalblue>) (2) <one>Tryptophan</one> (<royalblue>W</royalblue>) []
307
+ - Allgemein sieht eine Aminosäure <one>welch anderer Säure</one> ähnlich? <one>Essigsäure</one>. URL: https://de.wikipedia.org/wiki/Essigs%C3%A4ure []
308
+ - <one>Alpha-Ketoglutarat</one> (aus dem <three>Citratzyklus</three>) kann für die Biosynthese welcher Aminosäure verwendet werden? <one>Glutamat</one> (Merkhilfe: <one>Glutamat</one> besitzt ebenso <two>5 C Atome</two>, so wie Alpha-Ketoglutarat). URL: https://de.wikipedia.org/wiki/Glutamins%C3%A4ure []
309
+ - Wie sieht <one>R</one> bei <two>Cystein</two> aus? A: <one>-CH₂-SH</one> []
310
+ - Wenn jemand behauptet, das <one>Cystein</one> und <one>Methionin</one> ähnlich sind, da sie beide je ein <two>S-Atom</two> besitzen, sollten wir hier skeptisch sein? Wir sollten hier skeptisch sein, da <one>Methionin</one> eine weitere <two>CH₂-Methylengruppe</two> besitzt, und dessen S-Gruppe intern vorliegt; während die SH-Gruppe bei <one>Cystein</one> terminal vorliegt. []
311
+ - Wenn das Enzym <one>Glutamate-Oxaloacetate-Transaminase</one> arbeitet entsteht welche Aminosäure? <one>Glutamat</one>. []
312
+ - Fast alle proteinogenen Aminosäuren haben sowohl die <one>R-Konfiguration</one> als auch die <one>S-Konfiguration</one>. Nenne eine Ausnahme hierzu. A: <one>L-Cystein</one> zeigt die <mediumseagreen>R-Konfiguration</mediumseagreen>. []
313
+ - Welche Aminosäure wurde - genetisch betrachtet - <one>zuerst entschlüsselt</one>? <one>Phenylalanin</one> - über ein <two>Uracil-Homopolymer</two>. URL: https://de.wikipedia.org/wiki/Phenylalanin#Historische_Informationen []
314
+ - Wie unterscheidet sich <one>Valin</one> von <one>Leucin</one>? A: <one>Leucin</one> hat eine <two>-CH₂ Gruppe</two> (<royalblue>Methylen-Gruppe</royalblue>) mehr. []
315
+ - <one>Harnstoff</one> entsteht durch die <two>Hydrolyse welcher Aminosäure</two>? <one>Arginin</one>. URL: https://de.wikipedia.org/wiki/Harnstoff []
316
+ - Die R-Gruppe bei <one>Serin</one> (<royalblue>S</royalblue>) besteht aus ... ? <one>-CH₂-OH</one>. []
317
+ - <one>4-Hydroxyproline</one> has <two>how many OH-groups</two> in total? <one>1</one>. URL: https://pubchem.ncbi.nlm.nih.gov/compound/4-hydroxyproline []
318
+ - Is <one>Phenylalanine</one> heavier than <mediumpurple>Methionine</mediumpurple>? Yes. []
319
+ - <one>Histidin</one> hat in Summe <two>wieviele Stickstoffatome</two>? <one>3</one>. URL: https://de.wikipedia.org/wiki/Histidin []
320
+ - Können <one>Purinnukleotide</one> den Geschmack einiger Aminosäuren verstärken? Ja. []
321
+ - Welche 8 Aminosäuren sind <one>hydrophob</one> (Merkschema)? <one>GAV-LIMPF</one>. []
322
+ - Which aminoacid is <one>the most common one in human proteins</one>? <one>Leucine</one>. URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC117561/ []
323
+ - Which <one>two amino acids</one> are important for <three>lignin</three>? (1) <one>Phenylalanine</one> (<lightseagreen>F</lightseagreen>) (2) <one>Tyrosine</one> (<lightseagreen>Y</lightseagreen>) []
324
+ - Welche Aminosäure ist das <one>beste Nukleophil</one>? <one>Cystein</one>. []
325
+ - Nenne die Aminosäuren mit <one>positiv geladenen Gruppen</one>. A: (1) <one>Lysin</one>: <royalblue>K</royalblue> (2) <one>Arginin</one>: <royalblue>R</royalblue> (3) <one>Histidin</one>: <royalblue>H</royalblue> []
326
+ - Welche Aminosäure hat <one>im Blutplasma</one> die höchste Konzentration? <mediumseagreen>Glutamin</mediumseagreen> (Mnemonic: <peru>Blutamin</peru>; <one>Blutamin dank Glutamin!</one>). URL: https://de.wikipedia.org/wiki/Glutamin []
327
+ - Welche Aminosäure (von den 20 Standard-Aminosäuren) ist <one>am seltensten</one> in Proteinen zu finden? <one>Tryptophan</one>. []
328
+ - Welche Aminosäure besitzt eine <one>Guanidiniumgruppe</one>? <one>Arginin</one>. []
329
+ - Was ist <one>der spezifische Rest bei</one> <two>Homoserin</two>? <one>-CH₂-CH₂-OH</one>. []
330
+ - Nenne zwei Beispiele für <one>ungewöhnliche Aminosäuren</one> (ausser Selenocystein und Pyrrolysin). A: (1) <one>4-Hydroxyprolin</one> (2) <one>5-Hydroxylysin</one> []
331
+ - <one>Leucin</one> besitzt wieviele <royalblue>C-Atome</royalblue>? <one>6</one>. URL: https://de.wikipedia.org/wiki/Leucin []
332
+ - <one>Oxalacetat</one> kann gebildet werden durch <two>Transaminierung welcher Aminosäure</two>? <one>Aspartat</one>. (Hilfestellung fürs Merken: Oxalacetat hat ebenso <three>4 C-Atome</three>.) []
333
+ - <one>Methionin</one> besitzt <two>n CH₂-Gruppen</two>? <one>2</one>. URL: http://www.biostudies.de/images/f/f6/Met_und_F-Met.jpg []
334
+ - Was meinen wir mit der Bezeichnung <one>L-allo-Threonin</one>? Das die <one>NH₃⁺</one> und <one>OH⁻ Gruppe</one> <royalblue>auf der selben Seite des Moleküls</royalblue> zu finden sind. []
335
+ - Hat <one>Tryptophan</one> eine <two>Methylengruppe</two>? Ja. []
336
+ - Vorläufer von <one>Tryptophan</one>? <one>Chorismat</one>. URL: https://en.wikipedia.org/wiki/Chorismic_acid []
337
+ - Anderes Wort für die <one>Säuregruppe</one> einer Aminosäure? <one>Carboxygruppe</one>. URL: https://de.wikipedia.org/wiki/Carboxygruppe []
338
+ - <three>Welche Aminosäure</three> wirkt als <one>starker Stimulus für die Sekretion von Glukagon</one>? <one>Arginin</one>. []
339
+ - Which aminoacid is also an <one>inhibitory neurotransmitter</one>? <one>Glycine</one>. URL: https://en.wikipedia.org/wiki/Glycine []
340
+ - Nachteil <one>chemisch synthetisierter Aminosäuren</one>? Sie sind <one>optisch inaktive Gemische</one> der <two>D+L-Isomere</two>. []
341
+ - Aminosäuren ähneln <one>welch anderer Säure</one>? <one>Aminosäuren</one> ähneln der <two>Essigsäure</two>. []
342
+ - <one>Histamin</one> wird woraus gebildet? <one>Histamin</one> wird aus der Aminosäure <three>Histidin</three> gebildet, und zwar unter Wirkung des Enzyms <one>Histidindecarboxylase</one>. []
343
+ - Die <one>Peptidbindung in Aminosäuren</one> weist aufgrund der <three>Resonanzstabilisierung</three> einen etwa n%igen Doppelbindungscharakter auf. A: Etwa <one>40%-igen Doppelbindungscharakter</one>. []
344
+ - Not every amino acid is stable in a <one>powder form</one> at room temperature. For instance, <two>L-lysine</two> is not and has to be stored below 0 degrees. Why? <one>L-Lysine</one> is <mediumseagreen>very hygroscopic</mediumseagreen>. []
345
+ - Zeichne den spezifischen Rest von <one>Cystein</one>. A: <one>-CH₂-SH</one> []
346
+ - Welche Aminosäuren sind in der Zelle, <one>bei physiologischem pH</one>, <two>negativ geladen</two>? (1) <one>Aspartat</one> (2) <one>Glutamat</one> []
347
+ - <one>Prolin</one> ist ein <lightseagreen>zyklisches Derivat</lightseagreen> von ... ? <one>Glutamat</one>. []
348
+ - Die Seitenkette von <one>Prolin</one> ist ... ? <one>3x CH₂</one> (<royalblue>Methylen-Gruppe</royalblue>) []
349
+ - Wie viele Aminosäuren hat <one>Alpha-Amanitin</one>? <one>8</one>. URL: https://de.wikipedia.org/wiki/%CE%91-Amanitin []
350
+ - Welche zwei Aminosäuren werden im <one>Prephenatweg</one> synthetisiert? (1) <one>Phenylalanin</one> (<royalblue>F</royalblue>) (2) <one>Tyrosin</one> (<royalblue>Y</royalblue>) []
351
+ - Welche Aminosäure besitzt einen <one>Imidazolring</one>? <one>Histidin</one>. URL: https://de.wikipedia.org/wiki/Imidazol []
352
+ - Name the <one>four amino acids</one> that are very <three>poor alpha-helix formers</three> (<two>helix-breaker</two>). A: <two>PYGS-breaker</two> (1) <one>Proline</one> (<royalblue>P</royalblue>) (2) <one>Tyrosine</one> (<royalblue>Y</royalblue>) (3) <one>Glycine</one> (<royalblue>G</royalblue>) (4) <one>Serine</one> (<royalblue>S</royalblue>) []
353
+ - Simple <one>mnemonic</one> for the 3D-Structure of <two>Valine</two>? <one>Valine</one> looks like a <two>V</two>! []
354
+ - Natürliche Aminosäuren liegen in <one>L-Form</one> vor. Dies entspricht auch der absoluten <three>S-Konfiguration</three> - <two>mit einer Ausnahme</two>. Welche Aminosäure ist diese Ausnahme? <one>Cystein</one>. URL: https://www.chemie-schule.de/KnowHow/Cystein []
355
+ - Welche der 20 proteinogenen Aminosäuren sind <one>nicht chiral</one>? Nur <one>Glycin</one> ist <two>nicht chiral</two>. URL: https://de.wikipedia.org/wiki/Glycin []
356
+ - <one>Muskelzellen</one> geben vor allem welche Aminosäure ab? <one>Alanin</one>. []
357
+ - Das <one>durchschnittliches Gewicht einer einzelnen Aminosäure</one> beträgt, in Dalton? <one>110 Dalton</one> (<two>Da</two>). []
358
+ - Nenne eine <one>Iminosäure</one> unter den Aminosäuren. A: <one>Prolin</one>. []
359
+ - <one>Aminosäuren</one> sind mit welcher chemischen Substanz verwandt? <one>Essigsäure</one> (<two>CH₃-COOH</two>). []
360
+ - <one>Asparagin</one> hat wieviele <cadetblue>N-Atome</cadetblue> in seinem Rest? <one>1</one>. URL: https://classconnection.s3.amazonaws.com/903/flashcards/1113903/jpg/asparagine1335332977844.jpg []
361
+ - Wir können <one>Pyruvat</one> <three>transaminieren</three>. Welche Aminosäure gewinnen wir dadurch? <two>Alanin</two> (Merke: <one>Yin-Yang Relation</one>). []
362
+ - Mit welchen beiden Aminosäuren kann man <one>Alpha-Helices</one> unterbrechen? A: Mittels <one>Glycin</one> und <one>Prolin</one>. []
363
+ - Die <one>Biosynthese von Cystein</one> geht von welcher Aminosäure aus? Von <one>Serin</one>. URL: https://de.wikipedia.org/wiki/Cystein#Biosynthese_und_Metabolismus []
364
+ - When was the aminoacid <one>Glycine</one> discovered? In the year <one>1820</one>. (Asparagine was discovered in the year <mediumseagreen>1806</mediumseagreen>). []
365
+ - Nenne die <one>drei basischen Aminosäuren</one>. A: (1) <royalblue>K</royalblue>: <one>Lysin</one> (2) <royalblue>H</royalblue>: <one>Histidin</one> (3) <royalblue>R</royalblue>: <one>Arginin</one> []
366
+ - <one>Arogenat</one> ist direkter Vorläufer welch anderer Aminosäure in der Biosynthese? <one>Tryptophan</one>. URL: https://de.wikipedia.org/wiki/Shikimis%C3%A4ureweg []
367
+ - <one>Asparagin</one> und <one>Glutamin</one> tragen welche funktionelle Gruppe? A: Beide tragen jeweils eine <one>Carboxamidgruppe</one> (<two>-C=O-NH₂</two>). []
368
+ - Welche Aminosäure wird oft <one>hydroxyliert</one>? <springgreen>Prolin</springgreen> - hin zu <one>Hydroxyprolin</one> (<two>Prolin → Hydroxyprolin</two>). []
369
+ - Does <one>Threonine</one> contain a <two>-CH₂-group</two> in its residue (R)? No. URL: http://schulstoff.org/formel/strukturformel-threonin.png []
370
+ - <one>Liponamid</one> ähnelt welcher Aminosäure? <one>Lysin</one>. (Mnemonic: <one>Liponamid</one> ... beginnt mit dem Buchstaben <royalblue>L</royalblue>, so wie auch Lysin.) []
371
+ - Nenne die <one>21.</one> und die <one>22.</one> Aminosäure. A: (1) <one>Selenocystein</one> (2) <one>Pyrrolysin</one> []
372
+ - <one>Glutamat</one> hat wieviele <two>C-Atome</two> in Summe? <one>5</one>. URL: https://de.wikipedia.org/wiki/Glutamate []
373
+ - <one>Sphingosin</one> wird im Körper aus Palmitoyl-CoA und welcher Aminosäure synthetisiert? <royalblue>Serin</royalblue>. (Merkhilfe: Beide beginnen mit dem Buchstaben <one>S</one>; <three>SphingoSerin</three>.) []
374
+ - Welche <one>aromatischen Aminosäuren</one> gibt es? (1) <one>Histidin</one> (<royalblue>H</royalblue>) (2) <one>Phenylalanin</one> (<royalblue>F</royalblue>) (3) <one>Tryptophan</one> (<royalblue>W</royalblue>) (4) <one>Tyrosin</one> (<royalblue>Y</royalblue>) []
375
+ - <one>Serin</one> ähnelt welcher anderen Aminosäure? <one>Threonin</one>. (Aber auch <one>Cystein</one>.) []
376
+ - Der <one>tägliche Bedarf an Aminosäuren</one> eines erwachsenen Menschen beträgt, <three>pro kg</three>, in etwa ... ? Etwa <one>1g Aminosäuren</one> / <one>kg</one>. []
377
+ - Wie entstehen <one>biogene Amine</one> grundsätzlich? Durch <one>Decarboxylierung von Aminosäuren</one>. URL: https://de.wikipedia.org/wiki/Biogene_Amine []
378
+ - Which aminoacid is <one>the most common one</one> in proteins, in general? <one>Leucine</one>, at a percentage of about <two>9.1%</two>. []
379
+ - <one>L-Aspartic Acid</one> has <two>how many N atoms</two> in <three>its residue component</three>? <one>0</one>. URL: https://en.wikipedia.org/wiki/Aspartic_acid []
380
+ - <one>Ectoin</one> ist ein Derivat welcher Aminosäure? <one>Ectoin</one> ist ein Derivat der zyklischen Aminosäure <two>Prolin</two>. URL: https://en.wikipedia.org/wiki/Ectoine []
381
+ - We can label amino acids, especially <one>Methionine</one>, with <two>35S</two>. Name one disadvantage of this. A: <three>Methionine</three> is a relatively rare amino acid; <one>Ubiquitin</one>, for instance, has only <two>1 Methionine</two>, but <two>9 Leucines</two>. []
382
+ - Wieviele Stickstoffatome besitzt <one>Arginin</one> in Summe? <one>4</one>. URL: https://upload.wikimedia.org/wikipedia/commons/thumb/f/f4/Arginin_-_Arginine.svg/220px-Arginin_-_Arginine.svg.png []
383
+ - Ist die <one>Disulfidbrücke</one> in Cystin <two>kovalent</two>? Ja. []
384
+ - Ist <one>Arginin</one> <two>eher hydrophil</two> oder <two>eher hydrophob</two>? <one>Arginin</one> ist <two>sehr hydrophil</two>. []
385
+ - <one>Thyroxin</one> leitet sich von welcher Aminosäure ab? Von <one>Tyrosin</one>. (Leicht zu merken!) URL: https://de.wikipedia.org/wiki/Tyrosin []
386
+ - Ausgehend von <one>Erythrose-4-Phosphat-Chorismat</one>: welche drei Aminosäuren werden synthetisiert? <<one>3</one>> [<two>FYW</two>] (<three>Tyrosin, Phenylalanin, Tryptophan</three>) []
387
+ - Welche Aminosäure wird für die <one>Biosynthese von Adrenalin</one> herangezogen? <one>Tyrosin</one>. URL: https://upload.wikimedia.org/wikipedia/commons/thumb/3/36/Adrenalin_-_Adrenaline.svg/2000px-Adrenalin_-_Adrenaline.svg.png []
388
+ - <one>Tryptophan</one> is not only the heaviest among the twenty canonical aminoacids, but also contains the most atoms. <three>How many atoms</three> can we find in <one>Tryptophan</one>? <one>27</one>. []
389
+ - Which <one>two aminoacids</one> can <three>not</three> be shown in a <two>Ramachandran plot</two>? (1) <one>glycine</one> (2) <one>proline</one> []
390
+ - Sind <three>Aminosäuren</three> mit geladenen Seitenketten <one>eher hydrophil</one> oder <one>eher hydrophob</one>? Eher <one>hydrophil</one>. []
391
+ - Hat die <one>Asparaginsäure</one> eine <two>-CH₂ Gruppe</two>? Ja. []
392
+ - Wie viele Aminosäuren sind <one>insgesamt bekannt</one>? Etwa <one>500</one>. URL: https://de.wikipedia.org/wiki/Nichtproteinogene_Aminos%C3%A4uren []
393
+ - Name an aminoacid that serves as <one>a source of amino groups</one> during <two>biosynthetis</two>. A: <one>Glutamine</one>. URL: URL: https://en.wikipedia.org/wiki/Glutamine []
394
+ - Why does <one>Leucine</one> have the short letter <two>L</two> and Lysine <two>K</two>? Because <royalblue>Leucine</royalblue> is <one>more commonly occurring</one> in proteins than <royalblue>Lysine</royalblue> is. []
395
+ - Hat <one>Threonin</one> eine <two>endständige OH-Gruppe</two>? Nein. Die <one>-OH Gruppe</one> von Threonin hängt am C vor dem letzten C. URL: http://www.ernaehrung.de/static/lexikon/images/threonin.png []
396
+ - Das <lightseagreen>biogene Amin</lightseagreen> <one>Ethanolamin</one> wird aus welcher Aminosäure gebildet? Aus <one>Serin</one>. URL: https://de.wikipedia.org/wiki/Monoethanolamin []
397
+ - Welche zwei Aminosäuren sind <one>isobar</one>, besitzen folglich <two>die gleiche Masse</two>? <one>Leucin</one> und <one>Isoleucin</one>. []
398
+ - In der Nähe des <one>physiologischen pH</one> dominiert welche Aminosäure Form? Die <one>Zwitterionenform</one> (<two>COO⁻</two> und <two>NH₃⁺</two>). []
399
+ - Sind die meisten Aminosäuren <one>rein glucogen</one> oder <one>rein ketogen</one>? Die meisten Aminosäuren sind <one>rein glucogen</one>. []
400
+ - Welche Mitglieder umfasst die <one>Pyruvatfamilie</one>? <royalblue>A, V, L</royalblue>. (Merkhilfe: <one>Pyru</one><three>v</three><one>at</one>... enthält <one>V</one>). []
401
+ - Nenne einen <one>Hemmstoff der Aspartat-Kinase</one>. A: Eine Aminosäure - und zwar <two>Threonin</two>. URL: https://en.wikipedia.org/wiki/Aspartate_kinase []
402
+ - If we see a <one>large, positive number</one> for an aminoacid in the <two>hydropathy table</two>, what does this indicate? The larger the number, the <one>more hydrophobic</one> this respective amino acid is - so <two>this must be a very hydrophobic aminoacid</two>. []
403
+ - Sind <one>Aminosäuren</one> <two>stärkere Säuren</two> als die <one>Carbonsäuren</one>? <one>Ja</one>. []
404
+ - Welche Aminosäure ist <one>nicht chiral</one>? <one>Glycin</one>. Glycin ist daher <mediumseagreen>nicht den L-Aminosäuren zuzurechnen</mediumseagreen>. []
405
+ - <one>Homoserin</one> ist eine nichtproteinogene Aminosäure. Sie leitet sich von <two>Serin</two> ab. Chemisch unterscheidet sie sich von Serin wie genau? <two>Homoserin</two> besitzt eine <one>zusätzliche Methylengruppe</one> (<one>CH₂</one>). URL: https://de.wikipedia.org/wiki/Homoserin []
406
+ - <one>β-Alanin</one> ist das biogene Amin welcher proteinogenen Aminosäure? <one>Asparaginsäure</one>. URL: https://de.wikipedia.org/wiki/Pantothens%C3%A4ure
407
+ - Which <one>two roles</one> do amino acids in the active site of an enzyme have? (1) <one>binding amino acid</one> residues are involved in <royalblue>binding the substrate</royalblue> (2) <one>catalytic amino acids</one> are involved in the <royalblue>mechanism of the reaction</royalblue>
408
+ - <one>Ornithin</one> wird, zumindest in <two>E. coli</two>, aus welcher Aminosäure synthetisiert? <one>L-Glutamat</one>. URL: https://en.wikipedia.org/wiki/Ornithine#Other_reactions
409
+ - Was ist eine <one>aktivierte Aminosäure</one>? Dies ist eine Aminosäure mit einem <royalblue>hohen Gruppenübertragungspotenzial</royalblue>, welche über <two>Verwendung von ATP</two> zu einer <one>Aminoacyl-Adenylsäure</one> umgesetzt wurde.
410
+ - The <hotpink>Ponceau S stain</hotpink> binds mainly to what type of amino acids of a protein? <hotpink>Ponceau S</hotpink> binds mainly to <one>positively charged amino acids</one> (<two>⁺</two>).
411
+ - Die <one>basischen Aminosäuren</one> haben welche funktionelle Gruppe, die für die Basizität verantwortlich ist? Eine <one>-NH Gruppe</one> zumindest, oder <one>-NH₂</one> oder <one>-NH₃</one>. Diese sind <royalblue>positiv geladen</royalblue>.
412
+ - Bei der <one>Decarboxylierung von Serin</one> entsteht ... ? <one>Ethanolamin</one> - eine Vorstufe von <two>Cholin</two>. URL: https://en.wikipedia.org/wiki/Ethanolamine
413
+ - Which <one>functional groups</one> can be <two>found in all amino acids</two>? (1) All amino acids have <one>carboxylate groups</one>. (2) All amino acids have <one>primary amino groups</one> - save for <mediumseagreen>proline</mediumseagreen>, which has a <one>secondary amino group</one>.
414
+ - Warum können wir sagen, das <one>Histidin</one> einen <lightseagreen>heterozyklischen Ring</lightseagreen> besitzt? Da hier auch <one>N-Atome</one> anzutreffen sind. Per Definition besitzt ein <one>heterozyklischer Ring</one> <two>mindestens zwei verschiedene Atome</two>.
415
+ - Zwei Cysteine können <one>Cystine</one> erstellen. Wie? Durch <one>Oxidation</one>. Wird Cystine reduziert, entsteht wieder Cysteine. URL: https://de.wikipedia.org/wiki/Cystin
416
+ - Was sind <one>Diaminomonocarbonsäuren</one>? Nenne hierzu auch ein Beispiel. A: Dies ist zum Beispiel die Aminosäure <one>Lysin</one>. <one>Lysin</one> besitzt <two>zwei NH₂-Gruppen</two>.
417
+ - Was ist <one>Cystin</one>? Eine <one>Verknüpfung von zwei Cysteinen</one> miteinander - also ein <two>Disulfid</two>. URL: https://de.wikipedia.org/wiki/Cystin
@@ -0,0 +1,131 @@
1
+ # =========================================================================== #
2
+ # === Analytische Chemie
3
+ #
4
+ # Analytische Chemie. Ana tag. Analyt tag. Analytik tag.
5
+ # =========================================================================== #
6
+
7
+ - Warum verwenden wir die <one>Beilsteinprobe</one>? Um <one>Halogenverbindungen</one> nachzuweisen.
8
+ - The <one>HPLC</one> can separate compounds in the range of ... Daltons? 54 ... 450.000 Daltons.
9
+ - In der chemischen Analytik, nenne die berühmten Top 4 A-Fragen. A: (1) was liegt vor - die qualitative Analyse. (2) Wieviel davon liegt vor (die quantitative Analyse) (3) Welche Form liegt vor - die Speziationsanalyse (4) Wo befindet sich der Analyt (die <two>Verteilungsanalyse</two>)
10
+ - Was ist die <one>Amperometrie</one>? Die <one>Amperometrie</one> ist eine <two>elektrochemische Methode zur quantitativen Bestimmung von chemischen Stoffen</two>.
11
+ - Name an extremely simple analytical test that almost every human being can perform on a daily basis. A: <two>Sniffing with the nose</two> (<one>smell</one>/<one>scent</one>).
12
+ - Does the formula of the <one>Van Deemter curve</one> take particle size into consideration? Yes. []
13
+ - Messen die Meßinstrumente beim Massenspektrometer die <one>Masse der Ionen</one>? Nein. Sie messen deren <one>Masse-zu-Ladungsverhältnis</one>.
14
+ - Die <one>Gelchromatographie</one> geht bis zu einer Proteingrösse von n kDa, in etwa? Etwa <cadetblue>100 kDa</cadetblue>. URL: https://de.wikipedia.org/wiki/Gelchromatographie []
15
+ - Nenne eine Vorraussetzung für den Einsatz von <one>peptide mass fingerprinting</one>. A: Die Proteine müssen definierte Spaltstellen für Endoproteasen wie Trypsin, LysC oder AspN besitzen.
16
+ - Nenne zwei Detektoren die eingesetzt werden können in der Massenspektrometrie. A: (1) <one>Photomultiplier</one> (2) <one>Sekundärelektronenvervielfacher</one>
17
+ - Nenne die vier verschiedenen Typen an Massenspektrometern. A: (1) <one>Sektorfeld-Massenspektrometer</one> (2) <one>Quadrupol-Massenspektrometer</one> (3) <one>Flugzeit-Massenspektrometer</one> (TOF) (4) <one>Ionenfallen-Massenspektrometer</one>
18
+ - Wie werden Massenspektrometer allgemein typisiert? Über den <one>Analysator</one>, der hierbei eingesetzt wird.
19
+ - In einem Massenspektrometer: vor der Ionenquelle finden wir ... ? Das <one>Einlass-System</one>.
20
+ - Wozu dienen die <one>Vorproben</one>? Sie geben Hinweise auf die Zusammensetzung einer Substanz.
21
+ - Welche Säule kommt bei der <one>Gaschromatographie</one> üblicherweise zum Einsatz? Eine <one>Trennsäule</one>.
22
+ - Is <one>absolute accuracy</one> possible with quantitative data? No - there will always be a margin of error that must be accounted for. []
23
+ - Der erste, allgemeine Schritt in der analytischen Chemie ist typischerweise ... ? Die <one>Probennahme</one>
24
+ - Nenne die drei pK Werte von Histidin. A: (1) pK1=<two>1.82</two> (2) pK2=<two>6.0</two> (3) pK3=<two>9.17</two>
25
+ - Was ist die <one>Grenzreaktion GK</one>? Dies ist die geringste Konzentration, bei der eine Reaktion noch positiv ist.
26
+ - In einem <one>MALDI-TOF</one>: wie unterscheiden sich grosse Teilchen von kleinen Teilchen? Grosse Teilchen fliegen langsamer als kleine Teilchen im MALDI-TOF. []
27
+ - Was ist <one>das Detektionsprinzip des Flammenionisationsdetektors</one>? Der Analyt wird in der Flamme ionisiert und dadurch fließt ein messbarer Strom.
28
+ - Give an example for a <cadetblue>qualitative analysis</cadetblue>. A: <one>A home pregnancy test</one>. It will either indicate the presence (thus, give a <two>positive result</two>) or indicate a lack of pregnancy, thus a <two>negative result</two>.
29
+ - Unterscheide qualitative von quantitativer Elementaranaylse. A: (1) <one>Quantitativ</one>: in welchem Verhältnis die Elemente vorliegen. (2) <one>Qualitativ</one>: welche Elemente die Verbindung enthält.
30
+ - Nenne einen kommerziell erfolgreichen Gaschromatographen. A: <one>Perkin-Elmer</one>.
31
+ - In <orange>analytical chemistry</orange>, what is meant with <one>What is it - and How Much</one>? (1) <one>Qualitative Analysis</one> (2) <one>Quantitative Analysis</one>
32
+ - Nenne eine Methode, mit der man die Molekülmasse grosser Proteine sehr genau bestimmen kann. A: Die <one>MALDI-Massenspektrometrie</one>.
33
+ - Nenne eine Methode mit der man <one>Silikate</one> nachweisen kann. A: Die <one>Bleitiegel-Methode</one>.
34
+ - Ein <one>Massenspektrometer</one> besteht aus drei wichtigen Komponenten die wir I,A,D nennen. Wofür stehen diese Abkürzungen? (1) <one>Ionenquelle</one> (2) <one>Analysator</one> (3) <one>Detektor</one>
35
+ - Warum wurde die <one>dynamische Theorie der Chromatographie</one> eingeführt? Um die Peakverbreiterung als Funnktion der Strömungsgeschwindigkeit der mobilen Phase erklären zu können.
36
+ - Das Symbol der analytischen Chemie ist ... ? Die <one>Waage</one>.
37
+ - Die historische Entwicklung der Spektroskopie war und ist eng mit dem Verständnis über ... verknüpft. A: Verständnis über den Aufbau von Materie.
38
+ - Wie können wir angeben, das ein <one>Wert</one> unsicher ist? Mit Hilfe des <one>+-</one> (plus-minus) Symbols.
39
+ - In der analytischen Chemie gibt es die sogenannte <one>Verteilungsanalyse</one>. Nenne eine praktische, sehr interessante Anwendung dieser Technik, vor allem für die Medizin relevant. A: Analyse der Verteilung eines aktiven Wirkstoffes in einer Tablette.
40
+ - Kommt beim <one>Luminex-Verfahren</one> ein <violet>Laser</violet> zum Einsatz? <one>Ja</one>; sogar <two>zwei Laser</two>.
41
+ - Warum der Name <one>C-Trap</one> bei den hochauflösenden Massenspektrometern? Die <one>C-Trap kann Ionen fangen</one>.
42
+ - Eine analytische (chemische) Probe besteht aus <one>welchen zwei Komponenten</one>? Aus der <one>MATRIX</one> und dem <one>ANALYT</one>.
43
+ - Analytical chemistry may be important for <one>weather reports</one>. Explain this. A: For example when it refers to <one>air quality</one>, where analytical chemistry is at work.
44
+ - Explain why the <one>C14 radiocarbon-method</one> works. A: Plants will fix atmospheric carbon during photosynthesis. When a plant (or an animal) dies, the level of 14C in that plant will be approximately the level of 14C in the atmosphere - at that time. Past this point it will decrease due to <one>radioactive decay</one>, which allows us to determine the date of death/fixation to be estimated.
45
+ - In der Analytik: wovon hängt das Analysenergebnis direkt ab? Von der <one>Probennahme</one>.
46
+ - Die <one>chemische Analytik</one> kann man in welche zwei Methoden unterteilen? <one>Nasschemische Methoden</one> und <one>instrumentelle Methoden</one>.
47
+ - Was macht die <one>chemische Bodenanalyse</one>? Sie stellt fest wieviel von welchen Nährstoffen im Boden enthalten ist mitsamt des pH-Wertes.
48
+ - <one>Chromatographie</one> kann man dank Kopplung an welch andere Methode verbessern? <one>Spektroskopische Detektionen</one>.
49
+ - What electrode is the <one>SCE</one>? It is a <one>Saturated Calomel Electrode</one>.
50
+ - Wie trennen wir Gemische unterschiedlicher Dichten? Durch eine <one>Flüssigkeit mittlerer Dichte</one>.
51
+ - <one>Wer</one> begründete die analytische Chemie der Neuzeit? <one>Robert Boyle</one>.
52
+ - Handelt es sich messtechnisch betrachtet bei <one>AFM-Messungen</one> normalerweise um eine <two>Ausschlagsmethode</two> oder eine <two>Kompensationsmethode</two>? <one>Kompensationsmethode</one>. []
53
+ - Wann und wo etwa wurde der erste <one>FID-flame ionization detector</one> entwickelt? <one>1957</one>, in Australien.
54
+ - Was braucht man für die <one>Verbrennungsanalyse</one>? Die <one>Probe</one> und <one>Kupferoxid</one>.
55
+ - In der <one>Massenspektrometrie</one>: welchen Aggregatzustand muss der Analyt besitzen? Er muss <one>gasförmig vorliegen</one>. []
56
+ - The <one>limit of the radiocarbon technique</one> is about <three>n years</three>? About <one>~60000 years</one>.
57
+ - Bei der <one>Massenspektrometrie</one> wird die Probe ionisiert. In welchem Teil des Apparats? In der <one>Ionenquelle</one>.
58
+ - Ein <one>MALDI-MS Gerät</one> hat ein langes ... ? <one>Rohr</one>. []
59
+ - Eigentlich geht es in der <one>analytischen Chemie</one> immer um ... ? <one>Informationen</one>.
60
+ - Das <one>Trägergas</one> in der Gaschromatographie ist ...? <lightgreen>Helium</lightgreen>. []
61
+ - Name a plate in the <one>MALDI-TOF</one>. A: The <one>sample plate</one>.
62
+ - Kommt beim <two>Luminex-Verfahren</two> <one>Fluoreszenz</one> zum Einsatz? <one>Ja</one>. []
63
+ - <one>Trennverfahren</one> sind dazu geeignet, Stoffe aufgrund ihrer .... aufzutrennen. A: aufgrund <one>ihrer spezifischen Eigenschaften</one>.
64
+ - Die <one>Massenspektrometrie</one> beschreibt welches Verhältnis? Das Verhältnis zwischen <one>Masse zu Ladung</one> von, zum Beispiel, "Proteinbruchstücken".
65
+ - <one>Analysenwaagen</one> haben oft welche "bauliche Erweiterung" gegenüber einer "Oberschalenwaage"? Analysenwaagen besitzen oft einen <one>Windschutzkasten</one>.
66
+ - Was ist die Aufgabe des <one>Massenanalysators</one> in der Massenspektrometrie? Die <one>Ionentrennung</one>.
67
+ - <one>Murexid</one> wird zum Nachweis von Harnsäure und ähnlicher Substanzen genutzt. Welche Farbe haben Lösungen, die mit Murexid behandelt worden sind? <one>Purpurrot</one>.
68
+ - Wenn wir im Labor <one>Harnsäure</one> nachweisen möchten: welche Reaktion könnten wir hierbei verwenden? Die <one>Murexid-Reaktion</one>.
69
+ - Welche <one>Spritze</one> wird in der Gaschromatographie verwendet? Eine <one>Injektionsspritze</one>.
70
+ - <crimson>Gerner</crimson>: What is usually the first step in Peptide mass fingerprinting? The (unknown) protein of interest is first <one>cleaved into smaller peptides</one>.
71
+ - Farbe der Flamme bei der <one>Beilsteinprobe</one>? <lightgreen>Grün</lightgreen> - wenn Halogene vorhanden sind.
72
+ - In general terms, there are <one>two stages to chemical analysis</one>. Which ones are these? (1) <one>data collection</one> (2) <one>data analysis</one>
73
+ - Bis zu welcher Temperatur setzt man den Gaschromaten ein, und warum? Bis zu etwa <one>450° C</one>. Über diese Temperatur hinaus ergibt sich eine thermische Zersetzung.
74
+ - The <one>average value</one> is important in analytical chemistry. How can we define it? The average value is the sum of all values divided by the number of values.
75
+ - Thanks to the <one>SEQUEST's XCorr</one> we can identify ... ? <one>Peptides</one>.
76
+ - Nenne drei Gründe wieso <one>Trennverfahren</one> in der analytischen Chemie verwendet werden. A: (1) Mehrere Komponenten sind gleichzeitig zu bestimmen. (2) Selektivität spektroskopischer Analyseverfahren und Sensoren reichen oft nicht aus um den Analyt in der Matrix mit störenden Begleitstoffen zu bestimmen (3) Umweltanalysen erfordern die Komplexität der zu analysierenden Proben.
77
+ - A. W. für <one>Eddy-Diffusion</one>? <one>Streudiffusion</one>.
78
+ - Bei der <one>Massenspektrometrie</one>: wie nennen wir die zu untersuchende Substanz? Dies ist der <one>Analyten</one>.
79
+ - Welcher Druck (in bar) wird bei einer <one>HLPC</one> erreicht? Bis zu <one>100 bar</one>.
80
+ - In der Chromatographie: A. W. für "Durchflusszeit"? <one>Totzeit</one>.
81
+ - <crimson>Gerner</crimson>: (aber später in biochem2 rein): Gegeben ist eine Titrationskurve von Glutamat. Insgesamt finden wir hier 2x COOH Gruppen. Glutamat kann insgesmant 3 H Atome abgeben. Welches H-Atom wird zuletzt abgegeben? Das <one>H-Atom der NH3+ Gruppe</one>. Die H-Atome in den beiden COOH-Gruppen werden hingegen zuerst abgegeben.
82
+ - Andere Bezeichnung für <one>Turbidimetrie</one>? "Trübung".
83
+ - Welche Person war die erste Person die ein <one>Glasprisma</one> zur Spektralzerlegung benutzt hat? <one>Isaac Newton</one>.
84
+ - Erklären Sie das <one>Prinzip der Photometrie</one>. A: Befindet sich im Lösungsmittel in der Küvette eine lichtabsorbierende Substanz, die den Lichtstrahl abschwächt (extingiert), so geht der Ausschlag des Messgerätes entsprechend deren Konzentration zurück.
85
+ - Ist <one>MALDI-TOF fingerprinting</one> fehleranfällig? Ja, sogar sehr.
86
+ - Was muss man vor dem Anionen-Nachweis machen? Man muss <one>alle Kationen entfernen</one> (ausser NH4+ und der Alkalimetalle). Dies erfolgt über Ionenaustauscher oder über einen Soda-Auszug.
87
+ - Bei einem Massenspektrometer, wieso platzieren wir meist einen Geschwindigkeitsfilter davor? Dieser Filter lässt nur Teilchen mit der gewünschten Geschwindigkeit v durch.
88
+ - Was ist die <one>analytische Chemie</one>? Die wissenschaftliche Disziplin zur Entwicklung und Anwendung von Methoden, Geräten und Strategien zur Informationsgewinnung über die Zusammensetzung und Natur von Stoffen in Raum und Zeit.
89
+ - <crimson>Gerner</crimson>: Give a general example for <one>transfering charge through water</one> that is also relevant in molecular biology and biochemistry. A: The <one>proton hop movement</one> starting from H3O+ to other water molecules.
90
+ - <one>MALDI</one> typically makes use of a nitrogen laser, at which wavelength? <one>337nm</one>.
91
+ - When was the first <one>mass spectrometer</one> built? In <one>1907</one>.
92
+ - Was bedeutet es wenn wir eine Wiederfindungsrate von 65% haben? Das es einen <one>erheblichen Substanzverlust in der Analyse gab</one>.
93
+ - <one>Radiokohlenstoff-Datierungen</one> sind mit konventionellen Messungen bis zu einem Alter von ... möglich. A: <cadetblue>60.000 Jahren</cadetblue>.
94
+ - In der analytischen Chemie: aus welchen zwei Komponenten besteht eine Probe? Aus dem <one>Analyt</one> und der <one>Matrix</one>.
95
+ - <orange>Lieberzeit</orange>: In welcher Größenordnung bewegen sich die Wellenlängen typischer Röntgenstrahlung? <one>1-100 Angstrom</one>.
96
+ - <one>GULDBERG</one> und <one>WAAGE</one> formulierten wann das MASSENWIRKUNGSGESETZ (MWG)? 1864.
97
+ - A. W. für Infrarotspektren einer Substanz? <one>Fingerabdruck eines Moleküls</one>.
98
+ - Gib ein Beispiel an für ein Hybridinstrument mit hochauflösendem Massenspektrometer. A: <one>Thermo QEXACTIVE</one>.
99
+ - Ich möchte <royalblue>Wasser</royalblue> chemisch-analytisch untersuchen. Welche Phorese mag ich hier einsetzen? Die <one>Isotachophorese</one> (ITP).
100
+ - Gib zwei Beispiele für <one>Einschritttrennungen</one>. A: (1) Fällungen (2) Extraktionen
101
+ - Bei der Massenspektrometrie wird wonach getrennt? Nach dem Verhältnis Masse/Ladung (m/z) der Ionen.
102
+ - In der Analytik, Unterscheide zwischen Makroprobe, Mesoprobe und Mikroprobe. A: (1) Makroprobe: >100 mg (2) Mesoprobe: 10-100 mg (3) Mikroprobe: <10 mg
103
+ - Name an advantage of optimizing sensors in many different analytical devices. A: This not only simplifies analytical tests as such, but may also help in using these sensors by non-chemists (thus more people; and more people to sell to as well).
104
+ - Nenne einen Detektor in der Gaschromatographie. A: <one>WLD</one>.
105
+ - Bei welcher chromatographischen Trennmethode wird die "post-column"-Derivatisierung eingesetzt? Bei der <one>HPLC</one>.
106
+ - <crimson>Gerner</crimson>: The method called <cadetblue>Peptide mass fingerprinting</cadetblue> was developed in which year? <one>1993</one>.
107
+ - <crimson>Gerner</crimson>: Grundlage der Luminex-Technologie sind mikrokopisch kleine ... ? <one>Polystyrolpartikel</one>.
108
+ - Nenne zwei Nachteile des "Wärmeleitfähigkeitsdetektors". A: (a) unspezifisch, (b) relativ unempfindlich.
109
+ - Nenne eine völlig apolare stationäre Phase in der Graschromatographie. A: <one>Squelan</one>.
110
+ - Was ist das <cadetblue>Formaldimine</cadetblue>? H2C=NH.
111
+ - Name the two antibodies used in a <royalblue>Luminex assay</royalblue>. A: (1) <one>capture antibody</one> (2) <one>biotinylated antibody</one>
112
+ - <orange>Anthracen</orange> im Gaschromatograph (Temperatur)? Elution bei 175°C aber Siedepunkt bei 340°C.
113
+ - <crimson>Gerner</crimson>: Bei der Fingerprint-Analyse eines 2D-Spots mit MALDI-TOF sehen wir ein 2D-Diagramma. Die x-Achse unten hat welche Kenngrösse? Mass (m/z).
114
+ - In der analytischen Chemie, bei der Atomspektroskopie, gibt es 3 Abkürzungen. AAS, AES und RFA. Was bedeuten die? A: (1) <orange>AAS</orange> Atomabsorptionsspektroskopie (2) <orange>AES</orange> Atomemissionsspektroskopie (3) <orange>RFA</orange> Röntgenfluoreszenzanalytik (XRF)
115
+ - In einem "MALDI-TOF", wie verhalten sich grosse und kleine Teilchen jeweils? Grosse Teilchen fliegen langsamer als kleine Teilchen.
116
+ - In der analytischen Chemie können wir zwischen "qualitativer Analyse", "quantitativer Analyse" und "Strukturanalyse" unterscheiden. Mit welcher Frage können wir dies jeweils beschreiben? A: (1) Qualitative Analyse: "Was liegt vor?" (2) Quantitative Analyse: "Wieviel liegt vor?" (3) Strukturanalyse : "Wie sind die aufbauenden Elemente miteinander verknüpft?"
117
+ - In der analytischen Chemie, was heisst "SCFC"? Super Critical Fluid Chromatography.
118
+ - Nenne 3 Chromatographie-Methoden in der analytischen Chemie. A: (1) GC: Gaschromatographie (2) HPLC: High Performance Liquid Chromatography (3) DC: Dünnschichtchromatographie
119
+ - Wie kann man grob die analytischen Reagenzien einteilen? Gruppenreagenzien und spezifische Reagenzien.
120
+ - Was ist ein Analyt? Gib ein Beispiel hierfür an. A: Eine chemische Spezies (Element, Ion, Molekül, Radikal), das mittels eines (chemischen) Messprozesses identifiziert werden kann und seine Menge bzw. Konzentration bestimmt werden kann, z.B. Pestizid in Grundwasser
121
+ - Wie sehe ich ob Kupfer in einer wässrigen Probe dabei ist? Die Lösung wäre blau.
122
+ - Was ist der "H2S-Gang"? Dies ist ein chemischer Trennungsgang für Kationen der qualitativen Analytik.
123
+ - Mittels welchem Gerät bestimme ich den Brechungsindex? Mittels eines Refraktometers.
124
+ - In der Chemie, was ist die Ursubstanz? Dies ist die unbehandelte Substanz (die man untersuchen möchte).
125
+ - In der Analytik, welchen praktischen Vorteil bieten kleinere Analysensubstanzen? Eine geringere Entsorgungsproblematik.
126
+ - Vorgang bei Sodaauszug? Die Analysensubstanz wird mit 2-3 facher Menge an wasserfreiem Soda im Wasser gekocht (10 Min.), danach wird der Rückstand abgetrennt und im Filtrat nach Ansäuern mit einer entsprechenden Säure auf die Anionen geprüft.
127
+ - Wann wird der Sodaauszug durchgeführt? Bei Anionen deren Nachweis durch Metall-Ionen gestört wird.
128
+ - Nenne einen Nachteil der Massenspektrometrie. A: Es können nur gasförmige Stoffe untersucht werden.
129
+ - Was ist die Mehr-Punkt-Kalibration? Ermittlung des funktionalen Zusammenhanges zwischen der Konzentration und dem gemessenen Informationswert: Signal = f(Konzentration), Konzentration = f*(Signal)
130
+ - Was ist log K OW-? Das ist K (Octanol / Wasser)
131
+ - Muss bei Gaschromatographie die Substanz gasförmig vorliegen? Nein.