studium 0.16.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of studium might be problematic. Click here for more details.
- checksums.yaml +7 -0
- data/README.md +3211 -0
- data/bin/ask_exam_question +7 -0
- data/bin/check_description_of_these_lectures +7 -0
- data/bin/curriculum_module_displayer +7 -0
- data/bin/cycle +7 -0
- data/bin/d10 +7 -0
- data/bin/d100 +7 -0
- data/bin/d15 +7 -0
- data/bin/d20 +7 -0
- data/bin/d25 +7 -0
- data/bin/d3 +7 -0
- data/bin/d30 +7 -0
- data/bin/d5 +7 -0
- data/bin/determine_curricula +7 -0
- data/bin/display_lecture_url +7 -0
- data/bin/exam_registration_at +7 -0
- data/bin/exam_statistics +7 -0
- data/bin/exams_per_month +9 -0
- data/bin/finished_exams_at_this_university +7 -0
- data/bin/flashcards +7 -0
- data/bin/from_curriculum_id_to_university +9 -0
- data/bin/location_to_this_exam_topic.rb +7 -0
- data/bin/mandatory_continuous_assessment +7 -0
- data/bin/mandatory_upcoming_courses +10 -0
- data/bin/n_ECTS +7 -0
- data/bin/n_exam_questions_already_answered +16 -0
- data/bin/nquestions +7 -0
- data/bin/nsolved +7 -0
- data/bin/open_last_exam_question_asked_file +7 -0
- data/bin/passed_exams +7 -0
- data/bin/passed_pr/303/274fungsimmanente_courses +7 -0
- data/bin/pdf_for +7 -0
- data/bin/random_exam_topic +7 -0
- data/bin/report_solved_topics +7 -0
- data/bin/return_n_ects_from_this_file +7 -0
- data/bin/return_n_questions_solved_in_total +7 -0
- data/bin/rti_conflict +7 -0
- data/bin/search_for_n_ects +7 -0
- data/bin/show_lectures_on_the_commandline +7 -0
- data/bin/show_passed_exams_having_this_grade +7 -0
- data/bin/show_themes +7 -0
- data/bin/solved +9 -0
- data/bin/solved_ects +7 -0
- data/bin/studienkennzahl +7 -0
- data/bin/studium +7 -0
- data/bin/studium_skeleton +7 -0
- data/bin/ufind +7 -0
- data/bin/upcoming_exams +7 -0
- data/bin/week_parser +7 -0
- data/doc/ECTS_CONSIDERATIONS/ECTS_CONSIDERATIONS.md +82 -0
- data/doc/HOW_TO_DETERMINE_WHICH_PART_IS_THE_QUESTION_AND_WHICH_PART_IS_THE_ANSWER/HOW_TO_DETERMINE_WHICH_PART_IS_THE_QUESTION_AND_WHICH_PART_IS_THE_ANSWER.md +44 -0
- data/doc/README.gen +3164 -0
- data/doc/SQL_database_specification/SQL_database_specification.md +46 -0
- data/doc/deprecated_components/deprecated_components.md +46 -0
- data/doc/documentation_for_the_file_lecture_information/documentation_for_the_file_lecture_information.md +311 -0
- data/doc/elegant_colours/elegant_colours.md +21 -0
- data/doc/statistics/yearly_statistics.md +8 -0
- data/doc/todo/todo_for_the_graphical_parts_of_the_studium_gem_including_www_related_aspects.md +92 -0
- data/doc/todo/todo_for_the_studium_gem.md +55 -0
- data/img/STUDIES.png +0 -0
- data/lib/studium/autoinclude.rb +7 -0
- data/lib/studium/base/base.rb +3229 -0
- data/lib/studium/base/colours.rb +246 -0
- data/lib/studium/base/commandline_arguments_module/commandline_arguments_module.rb +115 -0
- data/lib/studium/base/prototype/prototype.rb +230 -0
- data/lib/studium/base/runmode_module/runmode_module.rb +103 -0
- data/lib/studium/c/README.md +2 -0
- data/lib/studium/c/a.out +0 -0
- data/lib/studium/c/obtain_random_entry.c +11 -0
- data/lib/studium/check_and_sanitize/README.md +15 -0
- data/lib/studium/check_and_sanitize/check_curriculum_for_correct_separation_of_bachelor_and_master.rb +141 -0
- data/lib/studium/check_and_sanitize/check_for_all_exam_topics_being_registered.rb +118 -0
- data/lib/studium/check_and_sanitize/check_for_correct_themes_of_each_course.rb +100 -0
- data/lib/studium/check_and_sanitize/check_for_existing_description_of_this_lecture.rb +194 -0
- data/lib/studium/check_and_sanitize/check_important_exams.rb +132 -0
- data/lib/studium/check_and_sanitize/check_the_lecture_information_file.rb +166 -0
- data/lib/studium/check_and_sanitize/find_duplicate_lectures.rb +124 -0
- data/lib/studium/check_and_sanitize/missing_priority_entry.rb +44 -0
- data/lib/studium/check_and_sanitize/sanitize_lecture_information.rb +427 -0
- data/lib/studium/check_and_sanitize/sanitize_this_string_containing_the_lva_dates.rb +79 -0
- data/lib/studium/colours/colours.rb +587 -0
- data/lib/studium/colours/sfancy.rb +49 -0
- data/lib/studium/colours/sfile.rb +39 -0
- data/lib/studium/colours/simp.rb +40 -0
- data/lib/studium/colours/use_colours.rb +39 -0
- data/lib/studium/colours/use_this_colour_for_exam_questions_and_exam_answers.rb +80 -0
- data/lib/studium/commandline/commandline.rb +1839 -0
- data/lib/studium/constants/colours.rb +16 -0
- data/lib/studium/constants/constants.rb +533 -0
- data/lib/studium/constants/curricula_related_constants.rb +504 -0
- data/lib/studium/constants/exam_topics.rb +156 -0
- data/lib/studium/constants/file_lecture_information.rb +55 -0
- data/lib/studium/constants/image_constants.rb +272 -0
- data/lib/studium/constants/regexes.rb +58 -0
- data/lib/studium/constants/roebe_specific_constants.rb +216 -0
- data/lib/studium/constants/standalone_constants.rb +372 -0
- data/lib/studium/constants/web_constants.rb +28 -0
- data/lib/studium/css/project.css +267 -0
- data/lib/studium/curricula/attribute_lecture_to_curriculum/attribute_boku_lecture_to_curriculum.rb +384 -0
- data/lib/studium/curricula/attribute_lecture_to_curriculum/attribute_lecture_to_curriculum.rb +238 -0
- data/lib/studium/curricula/curricula_from_this_website/curricula_from_this_website.rb +141 -0
- data/lib/studium/curricula/curriculum.rb +213 -0
- data/lib/studium/curricula/curriculum_as_string.rb +280 -0
- data/lib/studium/curricula/curriculum_module_displayer/constants.rb +33 -0
- data/lib/studium/curricula/curriculum_module_displayer/curriculum_module_displayer.rb +417 -0
- data/lib/studium/curricula/curriculum_module_displayer/initialize.rb +25 -0
- data/lib/studium/curricula/curriculum_module_displayer/menu.rb +45 -0
- data/lib/studium/curricula/curriculum_module_displayer/reset.rb +74 -0
- data/lib/studium/curricula/curriculum_module_displayer/run.rb +20 -0
- data/lib/studium/curricula/curriculum_module_displayer/set_use_this_curriculum.rb +93 -0
- data/lib/studium/curricula/curriculum_module_displayer/show_and_report.rb +190 -0
- data/lib/studium/curricula/determine_curricula/constants.rb +11 -0
- data/lib/studium/curricula/determine_curricula/determine_curricula.rb +36 -0
- data/lib/studium/curricula/determine_curricula/help.rb +39 -0
- data/lib/studium/curricula/determine_curricula/initialize.rb +48 -0
- data/lib/studium/curricula/determine_curricula/menu.rb +151 -0
- data/lib/studium/curricula/determine_curricula/misc.rb +403 -0
- data/lib/studium/curricula/determine_curricula/report.rb +143 -0
- data/lib/studium/curricula/determine_curricula/reset.rb +59 -0
- data/lib/studium/curricula/determine_curricula/run.rb +19 -0
- data/lib/studium/curricula/determine_elective_courses_in_this_curriculum.rb +112 -0
- data/lib/studium/curricula/display_bachelor_curricula.rb +90 -0
- data/lib/studium/curricula/handle_curricula/README.md +9 -0
- data/lib/studium/curricula/handle_curricula/handle_curricula.rb +100 -0
- data/lib/studium/curricula/handle_curricula/misc.rb +798 -0
- data/lib/studium/curricula/mitteilungsbl/303/244tter/mitteilungsbl/303/244tter.rb +323 -0
- data/lib/studium/curricula/modules/display_on_the_commandline.rb +319 -0
- data/lib/studium/curricula/modules/return_n_ects_in_this_module.rb +75 -0
- data/lib/studium/curricula/n_percent_solved_in_this_curriculum.rb +75 -0
- data/lib/studium/curricula/prepare_individual_curriculum.rb +304 -0
- data/lib/studium/curricula/random_curriculum_creator/random_curriculum_creator.rb +164 -0
- data/lib/studium/curricula/show_all_unfinished_courses_of_this_curriculum/show_all_unfinished_courses_of_this_curriculum.rb +116 -0
- data/lib/studium/curricula/show_lectures_of_this_curriculum.rb +114 -0
- data/lib/studium/curricula/show_lectures_of_this_curriculum_id/show_lectures_of_this_curriculum_id.rb +554 -0
- data/lib/studium/curricula/show_solved_percentage_among_the_registered_curricula.rb +87 -0
- data/lib/studium/curricula/sorted_individual_curricula.rb +121 -0
- data/lib/studium/ects/boku_ects_splitter.rb +128 -0
- data/lib/studium/ects/ects_per_university/ects_per_university.rb +179 -0
- data/lib/studium/ects/ects_scanner.rb +141 -0
- data/lib/studium/ects/ects_to_university_parser.rb +142 -0
- data/lib/studium/ects/last_entry_is_curriculum.rb +150 -0
- data/lib/studium/ects/n_ects_in_these_lectures.rb +196 -0
- data/lib/studium/ects/n_ects_points_in_mandatory_presence_courses.rb +50 -0
- data/lib/studium/ects/return_n_ects_from_this_file.rb +59 -0
- data/lib/studium/ects/return_n_ects_from_this_url.rb +197 -0
- data/lib/studium/ects/search_for_n_ects/OLD_search_for_n_ects.rb +0 -0
- data/lib/studium/ects/search_for_n_ects/search_for_n_ects.rb +719 -0
- data/lib/studium/ects/show_completed_ects_in_all_curricula.rb +232 -0
- data/lib/studium/ects/show_passed_credits_per_curriculum.rb +276 -0
- data/lib/studium/ects/simple_total_ects_points.rb +135 -0
- data/lib/studium/ects/solved_ects/constants.rb +19 -0
- data/lib/studium/ects/solved_ects/reset.rb +51 -0
- data/lib/studium/ects/solved_ects/solved_ects.rb +325 -0
- data/lib/studium/ects/solved_ects_per_university/reset.rb +25 -0
- data/lib/studium/ects/solved_ects_per_university/solved_ects_per_university.rb +106 -0
- data/lib/studium/ects/still_missing.rb +129 -0
- data/lib/studium/ects/sum_of_ects.rb +144 -0
- data/lib/studium/encoding/encoding.rb +109 -0
- data/lib/studium/exam_topics/RNAi_siRNA_and_miRNA +100 -0
- data/lib/studium/exam_topics/abfall_als_ressource +86 -0
- data/lib/studium/exam_topics/advanced_biochemistry +927 -0
- data/lib/studium/exam_topics/advanced_biotechnology +234 -0
- data/lib/studium/exam_topics/advanced_cellbiology +219 -0
- data/lib/studium/exam_topics/advanced_chemistry +527 -0
- data/lib/studium/exam_topics/advanced_immunology +152 -0
- data/lib/studium/exam_topics/advanced_microbiology +44 -0
- data/lib/studium/exam_topics/advanced_topics_in_plant_sciences +109 -0
- data/lib/studium/exam_topics/advanced_virology +245 -0
- data/lib/studium/exam_topics/ageing +153 -0
- data/lib/studium/exam_topics/agrar_ecology +67 -0
- data/lib/studium/exam_topics/agrarmarkt +73 -0
- data/lib/studium/exam_topics/agrarphysik +35 -0
- data/lib/studium/exam_topics/alcohols +31 -0
- data/lib/studium/exam_topics/algorithms +77 -0
- data/lib/studium/exam_topics/allergie +76 -0
- data/lib/studium/exam_topics/allgemeine_genetik +1006 -0
- data/lib/studium/exam_topics/allgemeine_mikrobiologie +1008 -0
- data/lib/studium/exam_topics/aminoacids +464 -0
- data/lib/studium/exam_topics/analytische_chemie_1 +133 -0
- data/lib/studium/exam_topics/analytische_chemie_2 +31 -0
- data/lib/studium/exam_topics/anatomie +295 -0
- data/lib/studium/exam_topics/anorganische_chemie +350 -0
- data/lib/studium/exam_topics/anthropologie +138 -0
- data/lib/studium/exam_topics/antibodies_and_antigens +791 -0
- data/lib/studium/exam_topics/apoptosis +35 -0
- data/lib/studium/exam_topics/archaea +112 -0
- data/lib/studium/exam_topics/archaeo_viruses +7 -0
- data/lib/studium/exam_topics/architecture +8 -0
- data/lib/studium/exam_topics/artificial_intelligence +89 -0
- data/lib/studium/exam_topics/atomemissionsspektrometrie +6 -0
- data/lib/studium/exam_topics/audio +11 -0
- data/lib/studium/exam_topics/bacteriophages +266 -0
- data/lib/studium/exam_topics/basic_biochemistry +1008 -0
- data/lib/studium/exam_topics/basic_biotechnology +1011 -0
- data/lib/studium/exam_topics/basic_chemistry +1007 -0
- data/lib/studium/exam_topics/basic_virology +1007 -0
- data/lib/studium/exam_topics/bauwesen +6 -0
- data/lib/studium/exam_topics/betriebssysteme +128 -0
- data/lib/studium/exam_topics/betriebswirtschaftslehre +29 -0
- data/lib/studium/exam_topics/bioanalytik_und_biosensoren +391 -0
- data/lib/studium/exam_topics/biochips +79 -0
- data/lib/studium/exam_topics/bioelektrochemie +57 -0
- data/lib/studium/exam_topics/biofilms +54 -0
- data/lib/studium/exam_topics/bioinformatics +511 -0
- data/lib/studium/exam_topics/biological_therapeutics +156 -0
- data/lib/studium/exam_topics/biologie +149 -0
- data/lib/studium/exam_topics/biomarkers +137 -0
- data/lib/studium/exam_topics/biomaterials +90 -0
- data/lib/studium/exam_topics/biomembranes +6 -0
- data/lib/studium/exam_topics/bionik +65 -0
- data/lib/studium/exam_topics/biophysik +34 -0
- data/lib/studium/exam_topics/biopolymers +10 -0
- data/lib/studium/exam_topics/bioprozesstechnik +149 -0
- data/lib/studium/exam_topics/bioressourcenmanagement +78 -0
- data/lib/studium/exam_topics/birds +5 -0
- data/lib/studium/exam_topics/bodenkunde +384 -0
- data/lib/studium/exam_topics/bodenmikrobiologie +40 -0
- data/lib/studium/exam_topics/cancerbiology +484 -0
- data/lib/studium/exam_topics/cell_cultures +229 -0
- data/lib/studium/exam_topics/cellbiology +1011 -0
- data/lib/studium/exam_topics/cellular_transport_and_protein_secretion +27 -0
- data/lib/studium/exam_topics/cellular_vesicles +11 -0
- data/lib/studium/exam_topics/cellulose +6 -0
- data/lib/studium/exam_topics/chemische_technologie_anorganischer_stoffe +209 -0
- data/lib/studium/exam_topics/chemische_technologie_organischer_stoffe +25 -0
- data/lib/studium/exam_topics/chemisches_labor +60 -0
- data/lib/studium/exam_topics/chemokines_and_cytokines +45 -0
- data/lib/studium/exam_topics/chemotaxis_quorum_sensing_and_motility_in_prokaryotes +116 -0
- data/lib/studium/exam_topics/citric_acid_cycle +84 -0
- data/lib/studium/exam_topics/clinical_microbiology +516 -0
- data/lib/studium/exam_topics/computer_science +308 -0
- data/lib/studium/exam_topics/computer_vision_and_computer_graphics +13 -0
- data/lib/studium/exam_topics/crispr +51 -0
- data/lib/studium/exam_topics/cyanobacteria +44 -0
- data/lib/studium/exam_topics/cytogenetics_and_chromosome_biology +579 -0
- data/lib/studium/exam_topics/databases_and_sql +126 -0
- data/lib/studium/exam_topics/dna_mutation_and_dna_repair +70 -0
- data/lib/studium/exam_topics/dna_replication +67 -0
- data/lib/studium/exam_topics/ecogenetics +26 -0
- data/lib/studium/exam_topics/ecological_agriculture +12 -0
- data/lib/studium/exam_topics/ecology +330 -0
- data/lib/studium/exam_topics/economy +218 -0
- data/lib/studium/exam_topics/electron_microscopy +7 -0
- data/lib/studium/exam_topics/elektronenmikroskopie +356 -0
- data/lib/studium/exam_topics/elektrophorese +132 -0
- data/lib/studium/exam_topics/elektrotechnik_und_elektrizit/303/244t +42 -0
- data/lib/studium/exam_topics/elisa +55 -0
- data/lib/studium/exam_topics/embryologie_und_entwicklung +650 -0
- data/lib/studium/exam_topics/endospores_and_spores +104 -0
- data/lib/studium/exam_topics/enzymes_and_cofactors +393 -0
- data/lib/studium/exam_topics/epigenetik +187 -0
- data/lib/studium/exam_topics/erste_hilfe +174 -0
- data/lib/studium/exam_topics/ethik +143 -0
- data/lib/studium/exam_topics/evolution_and_evolutionary_genetics +367 -0
- data/lib/studium/exam_topics/excel +7 -0
- data/lib/studium/exam_topics/fish +19 -0
- data/lib/studium/exam_topics/fluorescence_microscopy +10 -0
- data/lib/studium/exam_topics/food_microbiology_and_food_biotechnology +92 -0
- data/lib/studium/exam_topics/forensik +11 -0
- data/lib/studium/exam_topics/forstwirtschaft +53 -0
- data/lib/studium/exam_topics/fortgeschrittene_genetik +643 -0
- data/lib/studium/exam_topics/fortgeschrittene_gentechnik +218 -0
- data/lib/studium/exam_topics/fortgeschrittene_physik +6 -0
- data/lib/studium/exam_topics/fungi +119 -0
- data/lib/studium/exam_topics/genetische_krankheiten +198 -0
- data/lib/studium/exam_topics/genexpression +1008 -0
- data/lib/studium/exam_topics/genomics_and_metagenomics +280 -0
- data/lib/studium/exam_topics/gentechnik_und_praktische_biochemie +954 -0
- data/lib/studium/exam_topics/geochemistry +67 -0
- data/lib/studium/exam_topics/geography +9 -0
- data/lib/studium/exam_topics/geologie_und_mineralogie +624 -0
- data/lib/studium/exam_topics/geometrie +56 -0
- data/lib/studium/exam_topics/geschichte +95 -0
- data/lib/studium/exam_topics/gluconeogenesis +72 -0
- data/lib/studium/exam_topics/glycogen +45 -0
- data/lib/studium/exam_topics/glycolysis +118 -0
- data/lib/studium/exam_topics/glykomik +121 -0
- data/lib/studium/exam_topics/glyoxylatzyklus +31 -0
- data/lib/studium/exam_topics/grassland_cultivation +32 -0
- data/lib/studium/exam_topics/hormone +148 -0
- data/lib/studium/exam_topics/html +8 -0
- data/lib/studium/exam_topics/human_ecology +8 -0
- data/lib/studium/exam_topics/hygiene +224 -0
- data/lib/studium/exam_topics/imaging_and_microscopy +267 -0
- data/lib/studium/exam_topics/immunanalytik +94 -0
- data/lib/studium/exam_topics/immunologie +1011 -0
- data/lib/studium/exam_topics/informatik +117 -0
- data/lib/studium/exam_topics/innate_immunity +42 -0
- data/lib/studium/exam_topics/insekten +64 -0
- data/lib/studium/exam_topics/insulin_and_diabetes +57 -0
- data/lib/studium/exam_topics/java +618 -0
- data/lib/studium/exam_topics/javascript +20 -0
- data/lib/studium/exam_topics/klima +6 -0
- data/lib/studium/exam_topics/kryptographie +9 -0
- data/lib/studium/exam_topics/landtechnik +26 -0
- data/lib/studium/exam_topics/lebensmittel_und_getr/303/244nke +223 -0
- data/lib/studium/exam_topics/lebensmitteltechnologie +16 -0
- data/lib/studium/exam_topics/light_microscopy +19 -0
- data/lib/studium/exam_topics/linux_and_unix +36 -0
- data/lib/studium/exam_topics/lipids +141 -0
- data/lib/studium/exam_topics/macroeconomics +39 -0
- data/lib/studium/exam_topics/marketing +7 -0
- data/lib/studium/exam_topics/mathematics +297 -0
- data/lib/studium/exam_topics/medizin_und_biomedizinische_technik +254 -0
- data/lib/studium/exam_topics/medizinische_chemie_und_pharmazie +437 -0
- data/lib/studium/exam_topics/messtechnik_und_regeltechnik +104 -0
- data/lib/studium/exam_topics/metabolismus +478 -0
- data/lib/studium/exam_topics/meteorologie_und_atmosph/303/244re +120 -0
- data/lib/studium/exam_topics/microbial_ecology +36 -0
- data/lib/studium/exam_topics/microcontrollers +11 -0
- data/lib/studium/exam_topics/mikrobielle_lebensgemeinschaften +54 -0
- data/lib/studium/exam_topics/mikrobielle_physiologie +285 -0
- data/lib/studium/exam_topics/mitochondria +40 -0
- data/lib/studium/exam_topics/mixed +287 -0
- data/lib/studium/exam_topics/molecular_biology_of_plants +272 -0
- data/lib/studium/exam_topics/molekulare_medizin +133 -0
- data/lib/studium/exam_topics/nanotechnologie +453 -0
- data/lib/studium/exam_topics/nature_conservation_and_biodiversity +244 -0
- data/lib/studium/exam_topics/naturstoffe +9 -0
- data/lib/studium/exam_topics/netzwerke +63 -0
- data/lib/studium/exam_topics/neurobiology +307 -0
- data/lib/studium/exam_topics/nucleotide_sequencing +41 -0
- data/lib/studium/exam_topics/nutztierethologie +11 -0
- data/lib/studium/exam_topics/object_oriented_modeling +14 -0
- data/lib/studium/exam_topics/obstbau +249 -0
- data/lib/studium/exam_topics/organische_chemie +1007 -0
- data/lib/studium/exam_topics/organische_chemie_2 +136 -0
- data/lib/studium/exam_topics/paleobiology +39 -0
- data/lib/studium/exam_topics/parasitic_diseases_and_molecular_infection_biology +336 -0
- data/lib/studium/exam_topics/patent_law +55 -0
- data/lib/studium/exam_topics/pathologie +731 -0
- data/lib/studium/exam_topics/pcr +155 -0
- data/lib/studium/exam_topics/pentosephosphatweg +61 -0
- data/lib/studium/exam_topics/peroxisomes_glycosomes_and_lysosomes +66 -0
- data/lib/studium/exam_topics/pflanzenanatomie +261 -0
- data/lib/studium/exam_topics/pflanzenbau +24 -0
- data/lib/studium/exam_topics/pflanzenschutz +35 -0
- data/lib/studium/exam_topics/pflanzenwissenschaften +1009 -0
- data/lib/studium/exam_topics/pharmaceutical_biotechnology +251 -0
- data/lib/studium/exam_topics/physik +446 -1
- data/lib/studium/exam_topics/physikalische_chemie +79 -0
- data/lib/studium/exam_topics/physiology_and_histology +536 -0
- data/lib/studium/exam_topics/phytochemie +33 -0
- data/lib/studium/exam_topics/plant_biotechnology +131 -0
- data/lib/studium/exam_topics/plant_breeding +64 -0
- data/lib/studium/exam_topics/plant_development +50 -0
- data/lib/studium/exam_topics/populationsgenetik +138 -0
- data/lib/studium/exam_topics/posttranslationale_modifikation_von_proteinen +197 -0
- data/lib/studium/exam_topics/projektmanagement +220 -0
- data/lib/studium/exam_topics/prokaryote_genetics +562 -0
- data/lib/studium/exam_topics/protein_engineering +35 -0
- data/lib/studium/exam_topics/proteolyse +38 -0
- data/lib/studium/exam_topics/proteomik +41 -0
- data/lib/studium/exam_topics/protozoans +24 -0
- data/lib/studium/exam_topics/prozesstechnik +95 -0
- data/lib/studium/exam_topics/psychologie +18 -0
- data/lib/studium/exam_topics/python +372 -0
- data/lib/studium/exam_topics/quality_management +266 -0
- data/lib/studium/exam_topics/rechtsgrundlagen +123 -0
- data/lib/studium/exam_topics/research_topics_in_immunobiology +42 -0
- data/lib/studium/exam_topics/rna_and_dna +519 -0
- data/lib/studium/exam_topics/rna_seq +13 -0
- data/lib/studium/exam_topics/robotics +12 -0
- data/lib/studium/exam_topics/ruby +238 -0
- data/lib/studium/exam_topics/ruby_on_rails +63 -0
- data/lib/studium/exam_topics/scientific_writing_and_publishing +38 -0
- data/lib/studium/exam_topics/semisynthese_von_proteinen_und_nukleotiden +120 -0
- data/lib/studium/exam_topics/sexualbiologie +183 -0
- data/lib/studium/exam_topics/signal_transduction_and_laser_systems +212 -0
- data/lib/studium/exam_topics/sozialbiologie +9 -0
- data/lib/studium/exam_topics/splicing_exons_and_introns +65 -0
- data/lib/studium/exam_topics/statistik +268 -0
- data/lib/studium/exam_topics/stemcells +181 -0
- data/lib/studium/exam_topics/stickstofffixierung +91 -0
- data/lib/studium/exam_topics/structural_bioinformatics +54 -0
- data/lib/studium/exam_topics/strukturbiologie +423 -0
- data/lib/studium/exam_topics/system_biology_and_synthetic_biology +108 -0
- data/lib/studium/exam_topics/systematische_zoologie +439 -0
- data/lib/studium/exam_topics/technical_ecology +144 -0
- data/lib/studium/exam_topics/technische_chemie +208 -0
- data/lib/studium/exam_topics/technische_grundlagen_der_informatik +39 -0
- data/lib/studium/exam_topics/technische_mikrobiologie +393 -0
- data/lib/studium/exam_topics/technisches_zeichnen +5 -0
- data/lib/studium/exam_topics/the_bacterial_cell_wall +98 -0
- data/lib/studium/exam_topics/the_c_plus_plus_programming_language +531 -0
- data/lib/studium/exam_topics/the_c_programming_language +133 -0
- data/lib/studium/exam_topics/the_cellcycle +98 -0
- data/lib/studium/exam_topics/the_european_union +121 -0
- data/lib/studium/exam_topics/the_interferon_system +39 -0
- data/lib/studium/exam_topics/the_microbiome +164 -0
- data/lib/studium/exam_topics/the_universe +31 -0
- data/lib/studium/exam_topics/theoretische_chemie +5 -0
- data/lib/studium/exam_topics/theoretische_informatik +161 -0
- data/lib/studium/exam_topics/thermodynamics +21 -0
- data/lib/studium/exam_topics/tierzucht +139 -0
- data/lib/studium/exam_topics/toxikologie +453 -0
- data/lib/studium/exam_topics/transcription +185 -0
- data/lib/studium/exam_topics/translation_ribosomes_and_translational_control +154 -0
- data/lib/studium/exam_topics/umweltbiotechnologie +64 -0
- data/lib/studium/exam_topics/umweltchemie +233 -0
- data/lib/studium/exam_topics/urbanism_and_traffic +19 -0
- data/lib/studium/exam_topics/urea_cycle +56 -0
- data/lib/studium/exam_topics/vaccines_and_vaccination +250 -0
- data/lib/studium/exam_topics/vectors_and_gene_therapy +247 -0
- data/lib/studium/exam_topics/verfahrenstechnik +37 -0
- data/lib/studium/exam_topics/verhaltensbiologie +56 -0
- data/lib/studium/exam_topics/veterinary_medicine +10 -0
- data/lib/studium/exam_topics/vitamine +32 -0
- data/lib/studium/exam_topics/wasserkunde +138 -0
- data/lib/studium/exam_topics/weinbau +86 -0
- data/lib/studium/exam_topics/wissenschaft +20 -0
- data/lib/studium/exam_topics/yeast +104 -0
- data/lib/studium/exam_topics/zoologie +334 -0
- data/lib/studium/exams/afterburn/afterburn.rb +304 -0
- data/lib/studium/exams/ask_exam_from_the_upcoming_exams_pool.rb +150 -0
- data/lib/studium/exams/ask_exam_question/ask_exam_question.rb +2757 -0
- data/lib/studium/exams/ask_exam_topic_question.rb +112 -0
- data/lib/studium/exams/ask_question_from_alias.rb +141 -0
- data/lib/studium/exams/ask_question_from_any_of_the_still_missing_lectures.rb +130 -0
- data/lib/studium/exams/ask_question_from_grouped_themes.rb +141 -0
- data/lib/studium/exams/ask_question_from_last_topic.rb +91 -0
- data/lib/studium/exams/ask_random_question.rb +195 -0
- data/lib/studium/exams/autoinclude.rb +7 -0
- data/lib/studium/exams/average_grade/average_grade.rb +402 -0
- data/lib/studium/exams/csv/create_csv_passed_exams_file.rb +217 -0
- data/lib/studium/exams/cycle.rb +291 -0
- data/lib/studium/exams/dataset/dataset.rb +128 -0
- data/lib/studium/exams/designate_ten_random_exam_topics/designate_ten_random_exam_topics.rb +88 -0
- data/lib/studium/exams/exam/exam.rb +130 -0
- data/lib/studium/exams/exam_bubble/exam_bubble.rb +445 -0
- data/lib/studium/exams/exam_bubble/menu_for_the_main_loop.rb +111 -0
- data/lib/studium/exams/exam_question/README.md +3 -0
- data/lib/studium/exams/exam_question/exam_question.rb +427 -0
- data/lib/studium/exams/exam_registration_at/constants.rb +49 -0
- data/lib/studium/exams/exam_registration_at/exam_registration_at.rb +242 -0
- data/lib/studium/exams/exam_registration_at/help.rb +46 -0
- data/lib/studium/exams/exam_registration_at/menu.rb +81 -0
- data/lib/studium/exams/exam_registration_at/report_and_show.rb +133 -0
- data/lib/studium/exams/exam_registration_at/reset.rb +54 -0
- data/lib/studium/exams/exam_statistics_from_this_file/exam_statistics_from_this_file.rb +119 -0
- data/lib/studium/exams/exam_topics.rb +194 -0
- data/lib/studium/exams/exams.rb +20 -0
- data/lib/studium/exams/exams_per_month/exams_per_month.rb +2429 -0
- data/lib/studium/exams/exams_this_week.rb +182 -0
- data/lib/studium/exams/fix_exam_dates.rb +121 -0
- data/lib/studium/exams/frozen.rb +36 -0
- data/lib/studium/exams/last_exams/last_exams.rb +398 -0
- data/lib/studium/exams/lectures_without_exam_entry.rb +137 -0
- data/lib/studium/exams/mandatory_continuous_assessment/mandatory_continuous_assessment.rb +1359 -0
- data/lib/studium/exams/move_all_unsolved_exam_questions_to_the_top_of_the_file.rb +173 -0
- data/lib/studium/exams/move_the_last_exam_question_to_the_top_of_the_file/move_the_last_exam_question_to_the_top_of_the_file.rb +111 -0
- data/lib/studium/exams/n_exams_in_these_topics.rb +477 -0
- data/lib/studium/exams/next_exam.rb +107 -0
- data/lib/studium/exams/next_exams.rb +378 -0
- data/lib/studium/exams/open_exam_associated_url/open_exam_associated_url.rb +154 -0
- data/lib/studium/exams/open_last_exam_question_asked_file/constants.rb +15 -0
- data/lib/studium/exams/open_last_exam_question_asked_file/initialize.rb +29 -0
- data/lib/studium/exams/open_last_exam_question_asked_file/open_last_exam_question_asked_file.rb +110 -0
- data/lib/studium/exams/push_solved_questions_on_top.rb +180 -0
- data/lib/studium/exams/questions_solved_from_day_to_day/questions_solved_from_day_to_day.rb +374 -0
- data/lib/studium/exams/remote_ftp_url.rb +52 -0
- data/lib/studium/exams/repeat_last_question.rb +78 -0
- data/lib/studium/exams/report_total_amount_of_questions_and_answers_for.rb +116 -0
- data/lib/studium/exams/show_all_passed_exams_of_this_university.rb +252 -0
- data/lib/studium/exams/show_backlog_of_exams/show_backlog_of_exams.rb +116 -0
- data/lib/studium/exams/show_next_exams_for.rb +133 -0
- data/lib/studium/exams/show_themes/constants.rb +28 -0
- data/lib/studium/exams/show_themes/menu.rb +61 -0
- data/lib/studium/exams/show_themes/misc.rb +537 -0
- data/lib/studium/exams/show_themes/reset.rb +62 -0
- data/lib/studium/exams/show_themes/show_themes.rb +27 -0
- data/lib/studium/exams/show_upcoming_exams/show_upcoming_exams.rb +1375 -0
- data/lib/studium/exams/solve_all_questions_from_this_topic.rb +114 -0
- data/lib/studium/exams/solved/constants.rb +32 -0
- data/lib/studium/exams/solved/help.rb +24 -0
- data/lib/studium/exams/solved/initialize.rb +55 -0
- data/lib/studium/exams/solved/menu.rb +41 -0
- data/lib/studium/exams/solved/reset.rb +28 -0
- data/lib/studium/exams/solved/solved.rb +326 -0
- data/lib/studium/exams/timetable/constants.rb +142 -0
- data/lib/studium/exams/timetable/timetable.rb +450 -0
- data/lib/studium/exams/unsolve_all_questions_from_this_topic.rb +163 -0
- data/lib/studium/exams/upcoming_exams/upcoming_exams.rb +556 -0
- data/lib/studium/exams/upcoming_exams_at_the_boku/constants.rb +23 -0
- data/lib/studium/exams/upcoming_exams_at_the_boku/html.rb +64 -0
- data/lib/studium/exams/upcoming_exams_at_the_boku/upcoming_exams_at_the_boku.rb +194 -0
- data/lib/studium/exams/upcoming_exams_dataset.rb +247 -0
- data/lib/studium/exams/upcoming_registered_exams/upcoming_registered_exams.rb +257 -0
- data/lib/studium/exams/upload_exam_topics.rb +360 -0
- data/lib/studium/graphviz/README.md +4 -0
- data/lib/studium/graphviz/bachelor_vector_based_strategies.dot +160 -0
- data/lib/studium/graphviz/master_vector_based_strategies.dot +46 -0
- data/lib/studium/gui/gtk3/README.md +1 -0
- data/lib/studium/gui/gtk3/ask_exam_question/ask_exam_question.config +6 -0
- data/lib/studium/gui/gtk3/ask_exam_question/ask_exam_question.rb +760 -0
- data/lib/studium/gui/gtk3/ask_exam_question/manifest.yml +12 -0
- data/lib/studium/gui/gtk3/control_panel/control_panel.rb +39 -0
- data/lib/studium/gui/gtk3/curriculum_viewer/curriculum_viewer.rb +513 -0
- data/lib/studium/gui/gtk3/ects_per_university/ects_per_university.rb +217 -0
- data/lib/studium/gui/gtk3/exam_question_widget/exam_question_widget.rb +1889 -0
- data/lib/studium/gui/gtk3/expand_time_range/expand_time_range.rb +34 -0
- data/lib/studium/gui/gtk3/information_about_a_lecture/information_about_a_lecture.rb +34 -0
- data/lib/studium/gui/gtk3/lecture_information/lecture_information.rb +200 -0
- data/lib/studium/gui/gtk3/show_upcoming_exams/show_upcoming_exams.rb +34 -0
- data/lib/studium/gui/java/exam_question/ExamQuestion$1.class +0 -0
- data/lib/studium/gui/java/exam_question/ExamQuestion.class +0 -0
- data/lib/studium/gui/java/exam_question/ExamQuestion.java +215 -0
- data/lib/studium/gui/javafx/exam_question_widget/exam_question_widget.rb +58 -0
- data/lib/studium/gui/jruby/exam_question_widget/exam_question_widget.rb +317 -0
- data/lib/studium/gui/libui/ask_exam_question/ask_exam_question.rb +349 -0
- data/lib/studium/gui/shared_code/control_panel/control_panel_module.rb +314 -0
- data/lib/studium/gui/shared_code/exam_question_widget/exam_question_widget_module.rb +39 -0
- data/lib/studium/gui/shared_code/expand_time_range/expand_time_range.css +0 -0
- data/lib/studium/gui/shared_code/expand_time_range/expand_time_range_module.rb +190 -0
- data/lib/studium/gui/shared_code/information_about_a_lecture/information_about_a_lecture_module.rb +180 -0
- data/lib/studium/gui/shared_code/show_upcoming_exams/show_upcoming_exams_module.rb +206 -0
- data/lib/studium/images/libui_ask_exam_question.png +0 -0
- data/lib/studium/images/outdated.png +0 -0
- data/lib/studium/images/small_logos/DNA.png +0 -0
- data/lib/studium/images/small_logos/README.md +2 -0
- data/lib/studium/images/small_logos/solved.png +0 -0
- data/lib/studium/images/studies_favicon.png +0 -0
- data/lib/studium/java/README.md +5 -0
- data/lib/studium/java/studium/AskExamQuestion.java +461 -0
- data/lib/studium/java/studium/Base.java +123 -0
- data/lib/studium/java/studium/Constants.java +122 -0
- data/lib/studium/java/studium/EnsureThatTheLogDirectoryExists.java +57 -0
- data/lib/studium/java/studium/Mkdir.java +13 -0
- data/lib/studium/java/studium/OpenLastExamQuestionurlLinkViaTheBrowser.java +90 -0
- data/lib/studium/java/studium/ReturnNQuestionsSolvedInTotal.java +69 -0
- data/lib/studium/java/studium/Solved.java +112 -0
- data/lib/studium/java/studium/Test.java +60 -0
- data/lib/studium/java/studium/studium/AskExamQuestion.class +0 -0
- data/lib/studium/java/studium/studium/Base.class +0 -0
- data/lib/studium/java/studium/studium/Constants.class +0 -0
- data/lib/studium/java/studium/studium/EnsureThatTheLogDirectoryExists.class +0 -0
- data/lib/studium/java/studium/studium/Mkdir.class +0 -0
- data/lib/studium/java/studium/studium/OpenLastExamQuestionurlLinkViaTheBrowser.class +0 -0
- data/lib/studium/java/studium/studium/ReturnNQuestionsSolvedInTotal.class +0 -0
- data/lib/studium/java/studium/studium/Solved.class +0 -0
- data/lib/studium/java/studium/studium/Test.class +0 -0
- data/lib/studium/jobs/jobs.rb +80 -0
- data/lib/studium/logging/README.md +2 -0
- data/lib/studium/logging/ensure_that_the_log_directory_exists.rb +58 -0
- data/lib/studium/logging/html_log_directory.rb +42 -0
- data/lib/studium/logging/log_directory.rb +112 -0
- data/lib/studium/logging/store_last_question_asked_into_file.rb +137 -0
- data/lib/studium/parsers/README.md +2 -0
- data/lib/studium/parsers/custom_exam_results_parser.rb +209 -0
- data/lib/studium/parsers/parse_lva_dates.rb +233 -0
- data/lib/studium/parsers/parse_remote_lecture.rb +331 -0
- data/lib/studium/project/project.rb +88 -0
- data/lib/studium/requires/common_popular_requires.rb +37 -0
- data/lib/studium/requires/commonly_used_requires.rb +14 -0
- data/lib/studium/requires/require_class_exams_solved.rb +7 -0
- data/lib/studium/requires/require_ects_scripts.rb +27 -0
- data/lib/studium/requires/require_encoding.rb +7 -0
- data/lib/studium/requires/require_the_check_and_sanitize_files.rb +31 -0
- data/lib/studium/requires/require_the_curricula_files.rb +28 -0
- data/lib/studium/requires/require_the_exam_question_class.rb +7 -0
- data/lib/studium/requires/require_the_exams_files.rb +46 -0
- data/lib/studium/requires/require_the_logging_files.rb +23 -0
- data/lib/studium/requires/require_the_parsers.rb +28 -0
- data/lib/studium/requires/require_the_studium_constants.rb +10 -0
- data/lib/studium/requires/require_the_studium_project.rb +70 -0
- data/lib/studium/requires/require_the_toplevel_methods.rb +27 -0
- data/lib/studium/requires/require_the_utility_scripts.rb +34 -0
- data/lib/studium/requires/require_upcoming_exams.rb +7 -0
- data/lib/studium/requires/require_yaml.rb +7 -0
- data/lib/studium/requires/return_remote_homepage_of_this_lecture.rb +7 -0
- data/lib/studium/requires/with_GUI.rb +13 -0
- data/lib/studium/requires/www_mode.rb +17 -0
- data/lib/studium/statistics/README.md +4 -0
- data/lib/studium/statistics/best_exam_months.rb +92 -0
- data/lib/studium/statistics/curriculum_comparer/curriculum_comparer.rb +386 -0
- data/lib/studium/statistics/determine_exam_statistics_from_this_file.rb +142 -0
- data/lib/studium/statistics/exam_topics_that_are_about_to_be_completed.rb +119 -0
- data/lib/studium/statistics/max_stats.rb +170 -0
- data/lib/studium/statistics/new_questions_per_year.rb +147 -0
- data/lib/studium/statistics/report_how_many_ects_points_per_curriculum_were_completed.rb +167 -0
- data/lib/studium/statistics/report_how_many_exam_questions_were_answered.rb +474 -0
- data/lib/studium/statistics/show_exam_statistics.rb +66 -0
- data/lib/studium/statistics/show_which_courses_are_in_a_bachelor_or_master_curriculum_respectively.rb +104 -0
- data/lib/studium/statistics/top_stats.rb +127 -0
- data/lib/studium/toplevel_methods/all_passed_exams.rb +37 -0
- data/lib/studium/toplevel_methods/already_solved_this_lecture.rb +101 -0
- data/lib/studium/toplevel_methods/available_topics.rb +161 -0
- data/lib/studium/toplevel_methods/calculate_pr/303/274fungsimmanente_lectures_from_this_file.rb +55 -0
- data/lib/studium/toplevel_methods/copy_the_last_backup_of_file_lecture_information.rb +34 -0
- data/lib/studium/toplevel_methods/curriculum_related_code.rb +1038 -0
- data/lib/studium/toplevel_methods/does_this_course_require_mandatory_presence.rb +52 -0
- data/lib/studium/toplevel_methods/download.rb +161 -0
- data/lib/studium/toplevel_methods/e.rb +16 -0
- data/lib/studium/toplevel_methods/ects_from_lectures.rb +250 -0
- data/lib/studium/toplevel_methods/editor.rb +67 -0
- data/lib/studium/toplevel_methods/esystem.rb +29 -0
- data/lib/studium/toplevel_methods/filter_away_invalid_questions.rb +77 -0
- data/lib/studium/toplevel_methods/find_exam_topic_and_exam_title.rb +3807 -0
- data/lib/studium/toplevel_methods/has_this_lecture_been_already_passed_but_the_id_was_changed_lateron.rb +42 -0
- data/lib/studium/toplevel_methods/has_this_module_been_completed.rb +208 -0
- data/lib/studium/toplevel_methods/install_the_project_on_the_given_hostsystem.rb +32 -0
- data/lib/studium/toplevel_methods/is_on_roebe.rb +27 -0
- data/lib/studium/toplevel_methods/is_this_exam_topic_included.rb +46 -0
- data/lib/studium/toplevel_methods/is_this_homepage_registered.rb +32 -0
- data/lib/studium/toplevel_methods/is_this_lecture_a_practical_course.rb +93 -0
- data/lib/studium/toplevel_methods/is_this_lecture_registered_in_upcoming_exams.rb +45 -0
- data/lib/studium/toplevel_methods/java.rb +32 -0
- data/lib/studium/toplevel_methods/lecture_information.rb +108 -0
- data/lib/studium/toplevel_methods/lva_numbers.rb +358 -0
- data/lib/studium/toplevel_methods/main_dataset.rb +73 -0
- data/lib/studium/toplevel_methods/map_input_to_this_curriculum_filename.rb +607 -0
- data/lib/studium/toplevel_methods/methods_related_to_files_and_directories.rb +481 -0
- data/lib/studium/toplevel_methods/misc.rb +580 -0
- data/lib/studium/toplevel_methods/n_questions_available.rb +141 -0
- data/lib/studium/toplevel_methods/n_topics_available.rb +63 -0
- data/lib/studium/toplevel_methods/names_of_all_solved_exams.rb +77 -0
- data/lib/studium/toplevel_methods/note_down_the_start_time_and_how_many_exams_have_been_already_solved.rb +69 -0
- data/lib/studium/toplevel_methods/opnn.rb +27 -0
- data/lib/studium/toplevel_methods/passed_this_exam_on.rb +105 -0
- data/lib/studium/toplevel_methods/read_delay_between_questions_from_file.rb +36 -0
- data/lib/studium/toplevel_methods/regexes.rb +90 -0
- data/lib/studium/toplevel_methods/registered_for_this_exam.rb +83 -0
- data/lib/studium/toplevel_methods/remove_comments.rb +27 -0
- data/lib/studium/toplevel_methods/remove_exam_topics_that_were_already_answered.rb +27 -0
- data/lib/studium/toplevel_methods/remove_tags.rb +35 -0
- data/lib/studium/toplevel_methods/report.rb +439 -0
- data/lib/studium/toplevel_methods/return_all_exams_on_this_day.rb +69 -0
- data/lib/studium/toplevel_methods/return_dataset_for_this_exam_topic.rb +45 -0
- data/lib/studium/toplevel_methods/return_ects_from_this_lecture_stored_in_the_file_lecture_information.rb +194 -0
- data/lib/studium/toplevel_methods/return_hash_of_already_solved_lectures.rb +46 -0
- data/lib/studium/toplevel_methods/return_last_exam_question.rb +34 -0
- data/lib/studium/toplevel_methods/return_lva_number_of_this_lecture.rb +72 -0
- data/lib/studium/toplevel_methods/return_n_percent_solved_from_this_topic.rb +90 -0
- data/lib/studium/toplevel_methods/return_n_questions_were_answered_for_this_topic.rb +62 -0
- data/lib/studium/toplevel_methods/return_proper_university_image.rb +86 -0
- data/lib/studium/toplevel_methods/return_question_answer_string_from_this_topic.rb +63 -0
- data/lib/studium/toplevel_methods/return_remote_homepage_of_this_lecture.rb +11311 -0
- data/lib/studium/toplevel_methods/return_remote_moodle_link_of_this_lecture.rb +2405 -0
- data/lib/studium/toplevel_methods/return_sanitized_dataset_from_the_file_lecture_information.rb +110 -0
- data/lib/studium/toplevel_methods/return_theme_of_the_next_upcoming_exam.rb +40 -0
- data/lib/studium/toplevel_methods/runmode.rb +97 -0
- data/lib/studium/toplevel_methods/sanitized_dataset_from_file_passed_exams_per_month.rb +53 -0
- data/lib/studium/toplevel_methods/set_last_file_for_exam_questions.rb +64 -0
- data/lib/studium/toplevel_methods/set_this_cd_alias_to.rb +92 -0
- data/lib/studium/toplevel_methods/spacer.rb +18 -0
- data/lib/studium/toplevel_methods/time.rb +297 -0
- data/lib/studium/toplevel_methods/total_ects_points_passed.rb +73 -0
- data/lib/studium/toplevel_methods/try_to_guess_the_most_likely_lva_id.rb +58 -0
- data/lib/studium/toplevel_methods/try_to_return_the_expanded_name_of_this_lecture.rb +64 -0
- data/lib/studium/toplevel_methods/unfinished.rb +51 -0
- data/lib/studium/toplevel_methods/url.rb +106 -0
- data/lib/studium/toplevel_methods/verbose_truth.rb +36 -0
- data/lib/studium/toplevel_methods/when_was_this_lecture_passed.rb +54 -0
- data/lib/studium/toplevel_methods/word_wrap.rb +56 -0
- data/lib/studium/toplevel_methods/write_into_file_related_functionality.rb +197 -0
- data/lib/studium/toplevel_methods/yes_or_no_ja_oder_nein.rb +33 -0
- data/lib/studium/universities_in_austria/README.md +2 -0
- data/lib/studium/universities_in_austria/boku/README.md +4 -0
- data/lib/studium/universities_in_austria/boku/boku_/303/266ffnungszeiten.rb +28 -0
- data/lib/studium/universities_in_austria/boku/show_three_pillars_of_these_lectures.rb +110 -0
- data/lib/studium/universities_in_austria/boku/three_pillars.rb +237 -0
- data/lib/studium/universities_in_austria/tu_vienna/README.md +6 -0
- data/lib/studium/universities_in_austria/tu_vienna/tu_ferien.rb +42 -0
- data/lib/studium/universities_in_austria/tu_vienna/tu_/303/266ffnungszeiten.rb +34 -0
- data/lib/studium/university_course/university_course.rb +409 -0
- data/lib/studium/utility_scripts/attribute_lectures_to_university/attribute_lectures_to_university.rb +375 -0
- data/lib/studium/utility_scripts/audio_stats.rb +171 -0
- data/lib/studium/utility_scripts/auto_stud/auto_stud.rb +252 -0
- data/lib/studium/utility_scripts/auto_stud/constants.rb +18 -0
- data/lib/studium/utility_scripts/auto_stud/initialize.rb +23 -0
- data/lib/studium/utility_scripts/auto_stud/misc.rb +18 -0
- data/lib/studium/utility_scripts/autopurge_this_lecture_date.rb +93 -0
- data/lib/studium/utility_scripts/average_grade_of_this_curriculum.rb +155 -0
- data/lib/studium/utility_scripts/blocked_courses.rb +146 -0
- data/lib/studium/utility_scripts/calendar/README.md +2 -0
- data/lib/studium/utility_scripts/calendar/calendar.rb +251 -0
- data/lib/studium/utility_scripts/calendar/misc.rb +35 -0
- data/lib/studium/utility_scripts/check_description_of_these_lectures.rb +221 -0
- data/lib/studium/utility_scripts/course_registrations/course_registrations.rb +98 -0
- data/lib/studium/utility_scripts/courses/courses.rb +177 -0
- data/lib/studium/utility_scripts/create/README.md +2 -0
- data/lib/studium/utility_scripts/create/webpage_of_university.rb +129 -0
- data/lib/studium/utility_scripts/create/webpage_of_university_BOKU.rb +61 -0
- data/lib/studium/utility_scripts/create/webpage_of_university_TU.rb +60 -0
- data/lib/studium/utility_scripts/create/webpage_of_university_UniWien.rb +60 -0
- data/lib/studium/utility_scripts/create_database/create_database.rb +106 -0
- data/lib/studium/utility_scripts/current_lectures_belonging_to_both_bachelor_and_master_curriculum.rb +113 -0
- data/lib/studium/utility_scripts/currently_participating_in_these_lectures/currently_participating_in_these_lectures.rb +104 -0
- data/lib/studium/utility_scripts/display_lecture_url/display_lecture_url.rb +176 -0
- data/lib/studium/utility_scripts/expand_time_range/expand_time_range.rb +521 -0
- data/lib/studium/utility_scripts/finished_exams_at_this_university/finished_exams_at_this_university.rb +173 -0
- data/lib/studium/utility_scripts/foreign_language_percentage/constants.rb +23 -0
- data/lib/studium/utility_scripts/foreign_language_percentage/foreign_language_percentage.rb +149 -0
- data/lib/studium/utility_scripts/foreign_language_percentage/help.rb +31 -0
- data/lib/studium/utility_scripts/foreign_language_percentage/initialize.rb +25 -0
- data/lib/studium/utility_scripts/foreign_language_percentage/menu.rb +158 -0
- data/lib/studium/utility_scripts/foreign_language_percentage/report.rb +62 -0
- data/lib/studium/utility_scripts/foreign_language_percentage/reset.rb +50 -0
- data/lib/studium/utility_scripts/foreign_language_percentage/run.rb +19 -0
- data/lib/studium/utility_scripts/generate_spreadsheet/generate_spreadsheet.rb +354 -0
- data/lib/studium/utility_scripts/generate_spreadsheet/misc.rb +144 -0
- data/lib/studium/utility_scripts/holidays/holidays.rb +156 -0
- data/lib/studium/utility_scripts/homepage_of_these_courses/homepage_of_these_courses.rb +125 -0
- data/lib/studium/utility_scripts/lectures_attributed_to_universities/lectures_attributed_to_universities.rb +336 -0
- data/lib/studium/utility_scripts/lva_dates_of_the_important_courses.rb +111 -0
- data/lib/studium/utility_scripts/lva_nummer/lva_nummer.rb +431 -0
- data/lib/studium/utility_scripts/mandatory_lectures_in_this_month/mandatory_lectures_in_this_month.rb +316 -0
- data/lib/studium/utility_scripts/moodle/moodle.rb +213 -0
- data/lib/studium/utility_scripts/name_of_this_lva_id/name_of_this_lva_id.rb +110 -0
- data/lib/studium/utility_scripts/new_stud.rb +324 -0
- data/lib/studium/utility_scripts/next_week/next_week.rb +103 -0
- data/lib/studium/utility_scripts/not_yet_registered/not_yet_registered.rb +120 -0
- data/lib/studium/utility_scripts/open_last_exam_question_url_link_via_the_browser.rb +76 -0
- data/lib/studium/utility_scripts/passed_ects_per_year/passed_ects_per_year.rb +313 -0
- data/lib/studium/utility_scripts/passed_pr/303/274fungsimmanente_courses/passed_pr/303/274fungsimmanente_courses.rb +181 -0
- data/lib/studium/utility_scripts/pdf/README.md +2 -0
- data/lib/studium/utility_scripts/pdf/create_pdf_file_for_this_exam_topic.rb +355 -0
- data/lib/studium/utility_scripts/pdf/hexapdf_support.rb +50 -0
- data/lib/studium/utility_scripts/preparatory_meetings/preparatory_meetings.rb +317 -0
- data/lib/studium/utility_scripts/priority/priority.rb +164 -0
- data/lib/studium/utility_scripts/priority_points/priority_points.rb +263 -0
- data/lib/studium/utility_scripts/publish_my_exams/publish_my_exams.rb +174 -0
- data/lib/studium/utility_scripts/regexes/README.md +1 -0
- data/lib/studium/utility_scripts/regexes/generate_regex.rb +314 -0
- data/lib/studium/utility_scripts/regexes/generate_regexes_for_the_available_moodle_links.rb +55 -0
- data/lib/studium/utility_scripts/regexes/generate_regexes_for_the_registered_lectures.rb +48 -0
- data/lib/studium/utility_scripts/report_outdated_timetable_entries/report_outdated_timetable_entries.rb +142 -0
- data/lib/studium/utility_scripts/report_whether_this_lecture_is_registered_in_the_file_lecture_information/report_whether_this_lecture_is_registered_in_the_file_lecture_information.rb +128 -0
- data/lib/studium/utility_scripts/resolve_practical_courses_date_conflicts/individual_resolve_practical_courses_date_conflicts.rb +254 -0
- data/lib/studium/utility_scripts/resolve_practical_courses_date_conflicts/resolve_practical_courses_date_conflicts.rb +265 -0
- data/lib/studium/utility_scripts/scrape_remote_university_url.rb +138 -0
- data/lib/studium/utility_scripts/semester_schedule_creator/semester_container.rb +144 -0
- data/lib/studium/utility_scripts/semester_schedule_creator/semester_schedule_creator.rb +374 -0
- data/lib/studium/utility_scripts/semesterplaner/semesterplaner.rb +311 -0
- data/lib/studium/utility_scripts/set_aliases_based_on_this_file.rb +97 -0
- data/lib/studium/utility_scripts/show_all_passed_master_lectures/show_all_passed_master_lectures.rb +126 -0
- data/lib/studium/utility_scripts/show_conflicting_lva_lectures/show_conflicting_lva_lectures.rb +1385 -0
- data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/constants.rb +23 -0
- data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/menu.rb +63 -0
- data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/reset.rb +33 -0
- data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/run.rb +50 -0
- data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/show_descriptions_of_lectures_belonging_to_this_module.rb +145 -0
- data/lib/studium/utility_scripts/show_lecturers/show_lecturers.rb +147 -0
- data/lib/studium/utility_scripts/show_lectures/show_lectures.rb +910 -0
- data/lib/studium/utility_scripts/show_lectures_fitting_to_this_language/show_lectures_fitting_to_this_language.rb +121 -0
- data/lib/studium/utility_scripts/show_lectures_fitting_to_this_theme/show_lectures_fitting_to_this_theme.rb +105 -0
- data/lib/studium/utility_scripts/show_lectures_on_the_commandline/show_lectures_on_the_commandline.rb +3167 -0
- data/lib/studium/utility_scripts/show_lectures_on_this_day/show_lectures_on_this_day.rb +150 -0
- data/lib/studium/utility_scripts/show_lva_dates_of_this_lecture/show_lva_dates_of_this_lecture.rb +182 -0
- data/lib/studium/utility_scripts/show_mixed_bachelor_master_courses/show_mixed_bachelor_master_courses.rb +92 -0
- data/lib/studium/utility_scripts/show_outdated_lva_dates/show_outdated_lva_dates.rb +214 -0
- data/lib/studium/utility_scripts/show_passed_exams_having_this_grade/show_passed_exams_having_this_grade.rb +91 -0
- data/lib/studium/utility_scripts/show_solved_english_lectures/show_solved_english_lectures.rb +139 -0
- data/lib/studium/utility_scripts/steop/README.md +4 -0
- data/lib/studium/utility_scripts/steop/show_all_steop_lectures.rb +93 -0
- data/lib/studium/utility_scripts/steop/steop_lectures_in_this_curriculum.rb +284 -0
- data/lib/studium/utility_scripts/steop/steop_lva_dates.rb +119 -0
- data/lib/studium/utility_scripts/studienkennzahl/studienkennzahl.rb +116 -0
- data/lib/studium/utility_scripts/studium_skeleton/studium_skeleton.rb +242 -0
- data/lib/studium/utility_scripts/stundenplan.rb +600 -0
- data/lib/studium/utility_scripts/sync_studium_relevant_entries_one_level_downwards.rb +217 -0
- data/lib/studium/utility_scripts/ufind/ufind.rb +106 -0
- data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/constants.rb +26 -0
- data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/run.rb +20 -0
- data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/upcoming_mandatory_presence_courses.rb +187 -0
- data/lib/studium/utility_scripts/video_lecture_downloader/video_lecture_downloader.rb +107 -0
- data/lib/studium/utility_scripts/week_parser/constants.rb +23 -0
- data/lib/studium/utility_scripts/week_parser/help.rb +32 -0
- data/lib/studium/utility_scripts/week_parser/menu.rb +59 -0
- data/lib/studium/utility_scripts/week_parser/misc.rb +373 -0
- data/lib/studium/utility_scripts/week_parser/reset.rb +65 -0
- data/lib/studium/utility_scripts/week_parser/run.rb +18 -0
- data/lib/studium/utility_scripts/week_parser/show.rb +236 -0
- data/lib/studium/utility_scripts/week_parser/week_parser.rb +49 -0
- data/lib/studium/utility_scripts/weekday_parser.rb +155 -0
- data/lib/studium/utility_scripts/weekly_schedule.rb +198 -0
- data/lib/studium/utility_scripts/wochenplanung/wochenplanung.rb +267 -0
- data/lib/studium/version/version.rb +46 -0
- data/lib/studium/www/exams/exams.cgi +54 -0
- data/lib/studium/www/fast_ask_exam_question/fast_ask_exam_question.cgi +156 -0
- data/lib/studium/www/handle_curricula/handle_curricula.cgi +154 -0
- data/lib/studium/www/next_generation_exam_question_trainer/next_generation_exam_question_trainer.cgi +112 -0
- data/lib/studium/www/next_generation_exam_question_trainer/solved.cgi +26 -0
- data/lib/studium/www/sinatra/app.rb +231 -0
- data/lib/studium/www/sinatra/curriculum_displayer/curriculum_displayer.rb +162 -0
- data/lib/studium/www/sinatra/misc.rb +115 -0
- data/lib/studium/www/statistics/statistics.cgi +82 -0
- data/lib/studium/www/upcoming_exams/upcoming_exams.cgi +36 -0
- data/lib/studium/yaml/ad_hoc_trainer/README.md +2 -0
- data/lib/studium/yaml/ad_hoc_trainer/exam_topics.md +22 -0
- data/lib/studium/yaml/allowed_themes_for_courses/allowed_themes_for_courses.yml +348 -0
- data/lib/studium/yaml/array_allowed_entries_for_the_file_lecture_information/array_allowed_entries_for_the_file_lecture_information.yml +71 -0
- data/lib/studium/yaml/available_exam_topics/available_exam_topics.yml +234 -0
- data/lib/studium/yaml/backlog_of_exams.yml +37 -0
- data/lib/studium/yaml/colours/custom_colours.yml +50 -0
- data/lib/studium/yaml/colours/use_colours.yml +1 -0
- data/lib/studium/yaml/current_exams.yml +30 -0
- data/lib/studium/yaml/curricula/README.md +39 -0
- data/lib/studium/yaml/curricula/bachelor/bachelor_agrarwissenschaften_033255.yml +147 -0
- data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_basisblock_033630.yml +71 -0
- data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_botanik_033630.yml +100 -0
- data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_ecology_033630.yml +74 -0
- data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_mikrobiologie_und_genetik_033630.yml +122 -0
- data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_molekulare_biologie_033630.yml +106 -0
- data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_zoologie_033630.yml +87 -0
- data/lib/studium/yaml/curricula/bachelor/bachelor_chemie_033662.yml +165 -0
- data/lib/studium/yaml/curricula/bachelor/bachelor_dummy_curriculum.yml +182 -0
- data/lib/studium/yaml/curricula/bachelor/bachelor_elektrotechnik_und_informationstechnik_033235.yml +13 -0
- data/lib/studium/yaml/curricula/bachelor/bachelor_forstwirtschaft_033225.yml +115 -0
- data/lib/studium/yaml/curricula/bachelor/bachelor_informatik_033521.yml +136 -0
- data/lib/studium/yaml/curricula/bachelor/bachelor_ktww_033231.yml +84 -0
- data/lib/studium/yaml/curricula/bachelor/bachelor_lmbt_033217.yml +121 -0
- data/lib/studium/yaml/curricula/bachelor/bachelor_medizinische_informatik_033533.yml +283 -0
- data/lib/studium/yaml/curricula/bachelor/bachelor_molekularbiologie_033665.yml +95 -0
- data/lib/studium/yaml/curricula/bachelor/bachelor_nutrition_science_033638.yml +119 -0
- data/lib/studium/yaml/curricula/bachelor/bachelor_pharmazie_033305.yml +170 -0
- data/lib/studium/yaml/curricula/bachelor/bachelor_technische_chemie_033290.yml +131 -0
- data/lib/studium/yaml/curricula/bachelor/bachelor_technische_informatik_033535.yml +23 -0
- data/lib/studium/yaml/curricula/bachelor/bachelor_ubrm_033227.yml +142 -0
- data/lib/studium/yaml/curricula/bachelor/bachelor_verfahrenstechnik_033273.yml +167 -0
- data/lib/studium/yaml/curricula/bachelor/bachelor_wirtschaftsinformatik_033526.yml +29 -0
- data/lib/studium/yaml/curricula/experimental/bachelor_informatik_in_den_lebenswissenschaften.yml +137 -0
- data/lib/studium/yaml/curricula/individual/bachelor_formale_logik.yml +88 -0
- data/lib/studium/yaml/curricula/individual/bachelor_informatik_und_molekulare_biologie.yml +1161 -0
- data/lib/studium/yaml/curricula/individual/bachelor_vector_based_strategies_in_life_sciences_molecular_medicine_and_biotechnology.yml +1157 -0
- data/lib/studium/yaml/curricula/individual/master_bioinformatics_and_nanobiotechnology_in_molecular_medicine.yml +306 -0
- data/lib/studium/yaml/curricula/individual/master_vector_based_strategies_in_life_sciences_molecular_medicine_and_biotechnology.yml +741 -0
- data/lib/studium/yaml/curricula/master/master_bioinformatik_066875.yml +75 -0
- data/lib/studium/yaml/curricula/master/master_biologie_molekulare_mikrobiologie_mikrobielle_oekologie_und_immunbiologie_066830.yml +78 -0
- data/lib/studium/yaml/curricula/master/master_biologische_chemie_066863.yml +66 -0
- data/lib/studium/yaml/curricula/master/master_dummy_curriculum.yml +197 -0
- data/lib/studium/yaml/curricula/master/master_genetik_und_entwicklungsbiologie_066877.yml +89 -0
- data/lib/studium/yaml/curricula/master/master_lmbt_066418.yml +112 -0
- data/lib/studium/yaml/curricula/master/master_molecular_biology_066865.yml +72 -0
- data/lib/studium/yaml/curricula/master/master_molekulare_biologie_066834.yml +151 -0
- data/lib/studium/yaml/curricula/master/master_pharmazie_066605.yml +176 -0
- data/lib/studium/yaml/curricula/master/master_technische_chemie_066490.yml +123 -0
- data/lib/studium/yaml/curricula/outdated/master_bioinformatics_and_molecular_biotechnology_including_aspects_from_molecular_medicine.yml +438 -0
- data/lib/studium/yaml/curricula/outdated/master_food_science_and_plant_biotechnology.yml +31 -0
- data/lib/studium/yaml/curricula.yml +562 -0
- data/lib/studium/yaml/daily_questions_solved/daily_questions_solved.yml +1849 -0
- data/lib/studium/yaml/default_delay.yml +4 -0
- data/lib/studium/yaml/default_encoding.yml +1 -0
- data/lib/studium/yaml/directory_to_the_exam_topics.yml +0 -0
- data/lib/studium/yaml/editor.yml +1 -0
- data/lib/studium/yaml/exams/next_exams_to_do.md +9 -0
- data/lib/studium/yaml/file_for_exam_questions.yml +1 -0
- data/lib/studium/yaml/german/README.md +2 -0
- data/lib/studium/yaml/german/german_to_english_month_names.yml +16 -0
- data/lib/studium/yaml/grouped_themes/grouped_themes.yml +258 -0
- data/lib/studium/yaml/holidays/holidays.yml +201 -0
- data/lib/studium/yaml/important_exams.yml +274 -0
- data/lib/studium/yaml/inscription_dates_of_universities.yml +60 -0
- data/lib/studium/yaml/lecture_aliases.yml +138 -0
- data/lib/studium/yaml/lecture_information/lecture_information.yml +63818 -0
- data/lib/studium/yaml/log_dir.yml +1 -0
- data/lib/studium/yaml/main_topic/main_topic.yml +11 -0
- data/lib/studium/yaml/max_stats.yml +256 -0
- data/lib/studium/yaml/meta_themes +1 -0
- data/lib/studium/yaml/mitbelegung/README.md +4 -0
- data/lib/studium/yaml/mitbelegung/mitbelegung.yml +21 -0
- data/lib/studium/yaml/mitteilungsbl/303/244tter/mitteilungsbl/303/244tter.yml +363 -0
- data/lib/studium/yaml/n_total_questions.yml +1 -0
- data/lib/studium/yaml/rename_konsole_tab.yml +1 -0
- data/lib/studium/yaml/semester_planner/README.md +4 -0
- data/lib/studium/yaml/semester_planner/semester_planner.yml +189 -0
- data/lib/studium/yaml/show_topic.yml +1 -0
- data/lib/studium/yaml/statistics/lecture_information.yml +1 -0
- data/lib/studium/yaml/statistics/max_stats.yml +239 -0
- data/lib/studium/yaml/statistics/statistics.yml +77 -0
- data/lib/studium/yaml/week/01_monday.yml +25 -0
- data/lib/studium/yaml/week/02_tuesday.yml +68 -0
- data/lib/studium/yaml/week/03_wednesday.yml +63 -0
- data/lib/studium/yaml/week/04_thursday.yml +20 -0
- data/lib/studium/yaml/week/05_friday.yml +31 -0
- data/lib/studium/yaml/week/06_saturday.yml +16 -0
- data/lib/studium/yaml/week/07_sunday.yml +0 -0
- data/lib/studium/yaml/week/README.md +10 -0
- data/lib/studium.rb +5 -0
- data/studium.gemspec +82 -0
- data/test/testing_colourized_question_and_answer.rb +18 -0
- data/test/testing_studium.rb +244 -0
- data/test/testing_studium_base_class.rb +31 -0
- data/test/testing_the_file_lecture_information.rb +18 -0
- data/test/testing_time_component.rb +29 -0
- metadata +1101 -0
@@ -0,0 +1,478 @@
|
|
1
|
+
# =========================================================================== #
|
2
|
+
# === Metabolismus (Metabolismus tag, Metabolic tag, Meta tag, Metatag)
|
3
|
+
#
|
4
|
+
# Metabolism tag.
|
5
|
+
#
|
6
|
+
# Auch mikrobielle Physiologie und Biochemie des Stoffwechsels.
|
7
|
+
# Fragen zu zellulären, biochemischen Kreisläufen sollten hier
|
8
|
+
# gesammelt werden. Cori-Zyklus tag. Auch Metabolomics.
|
9
|
+
#
|
10
|
+
# Die Stoffwechselreaktionen in der Glykolyse werden seit Mai 2018
|
11
|
+
# in einer separaten Datei gesammelt.
|
12
|
+
# =========================================================================== #
|
13
|
+
|
14
|
+
- <one>Circular metabolic pathways</one> <two>are also called ... </two>? <one> metabolic cycles</one>. []
|
15
|
+
- Bei der Substratkettenphosphorylierung wird welcher Energieüberträger gewonnen? ATP oder GTP.
|
16
|
+
- Der Hauptteil der Fructose, die über die Nahrung dem menschlichen Körper zugeführt wird, wird von welchem Organ verwertet? Von der <one>Leber</one>.
|
17
|
+
- <one>Homocystein</one> <two>is an intermediate in which part of metabolism</two>? It is an intermediate in <one>amino acid metabolism</one>.
|
18
|
+
- Nenne <one>zwei verschiedene Gründe</one>, wieso die <two>Substratkettenphosphorylierung</two> wichtig sein mag. A: Die <two>Substratkettenphosphorylierung</two> ist dann besonders wichtig, wenn der Organismus (1) <two>keinen Sauerstoff verarbeiten kann</two> oder (2) wenn <two>kein Sauerstoff vorhanden ist</two>.
|
19
|
+
- One of the fundamental requirements of all cells is to balance ATP ... and ATP ... A: to balance <one>ATP consumption</one> and ATP generation.
|
20
|
+
- Die <one>HMG-CoA-Reduktase</one> <two>erzeugt in Eukaryoten welche Substanz</two>? <one>Mevalonat</one> (== Mevalonsäure). URL: https://de.wikipedia.org/wiki/Mevalons%C3%A4ure
|
21
|
+
- <one>Welcher Transporter</one> in den Darmepithelzellen nimmt Fructose auf? Der <one>GLUT-5-Transporter</one>.
|
22
|
+
- Bei der <one>Lipolyse</one> entsteht auch Glycerin. Was geschieht mit diesem Glycerin? Es wird in den Glucosestoffwechsel eingeschleust.
|
23
|
+
- Sowohl der Harnstoffzyklus als auch der Citratzyklus enthalten <one>Fumarat</one> <two>als Zwischenprodukt</two>. Der Metabolit, der diese beiden Zyklen jedoch tatsächlich verbindet, ist allerdings ein anderes, und zwar ... ? <one>Malat</one>.
|
24
|
+
- Was ist die Substratkettenphosphorylierung? Hier überträgt ein phosphoryliertes Zwischenprodukt seine Phosphorylgruppe auf ADP.
|
25
|
+
- Welche <one>zwei Methoden</one> verwendeten <two>Calvin, Bessham und Benson</two> <three>für ihre Versuche zur Aufklärung von der CO₂-Fixierung</three>? (1) <one>Radioautographie</one> (2) <one>Chromatographie</one>
|
26
|
+
- Das Vitamin <one>Pantothensäure</one> ist <two>über Coenzym A</two> an der Synthese welchen Neurotransmitters beteiligt? An <one>Acetylcholin</one>.
|
27
|
+
- Eine Zelle mag <one>Fructose</one>, über die Glycolyse, <two>verwerten</two>. Nenne die beiden <three>Schlüsselenzyme</three> jeweils, in der Leber und in Muskel-/Fettgewebe. A: (1) <one>Leber</one>: <two>Fructokinase</two> (2) <one>Muskel</one>/<one>Fettgewebe</one>: <two>Hexokinase</two>
|
28
|
+
- <one>Pyruvat</one> <two>ist für den Stoffwechsel eminent wichtig</two>. <three>Nenne die drei relevanten funktionellen Gruppen von Pyruvat</three>. A: (1) <one>-CH₃</one> (2) <one>-C=O</one> (3) <one>-COOH</one>
|
29
|
+
- Die HMG-CoA-Reduktase transformiert HMG-CoA zu ... ? <one>Mevalonat</one>.
|
30
|
+
- Just about <one>the most important coenzyme</one>, <two>in regards to enzymes employed in metabolism</two>, is ... ? <one>NAD⁺</one>
|
31
|
+
- The most famous, and probably most important, <one>electron carrier</one> in an eukaryotic cell is ... ? <one>NADH</one>: <two>Nicotinamide adenine dinucleotide</two>.
|
32
|
+
- Nenne eine Substanz, die den <one>Pyruvat-Dehydrogenasekomplex</one> hemmen kann. A: <two>Arsenit</two> (AsO₃³⁻); eine <one>Arsenit-Vergiftung</one>.
|
33
|
+
- The <one>cori cycles</one> <two>shifts part of the metabolic burden</two> of ... to ... ? Of <one>active muscle</one> to the <two>liver</two>.
|
34
|
+
- <one>Welche zwei metabolische Zugänge</one> gibt es zu den Nucleotiden? (1) die <one>de novo-Synthese</one> (2) der <one>salvage pathway</one>
|
35
|
+
- <one>Warum genau</one> können <two>Vertebraten</two> nicht den <three>Glyoxylat-Zyklus</three> verwenden? <one>Vertebraten</one> <two>fehlen die beiden Enzyme</two> <three>Isocitratlyase</three> und <three>Malatsynthase</three>.
|
36
|
+
- <one>Every biological cell</one> <two>contributes to metabolism</two>. How can we know that this statement is true? Because <one>every cell will also generate heat</one>, aside from its metabolism.
|
37
|
+
- <one>Glucose catabolism</one> <two>is important in biosynthesis</two>? <one>Yes</one> - the <two>5-carbon sugars</two> can be used to <three>build nucleic acid</three>.
|
38
|
+
- Nenne zwei Stoffwechselwege, die durch erhöhte Glucagonwerte im Blut stimuliert werden. A: (1) Glykogenolyse (2) Beta-Oxidation
|
39
|
+
- <one>NADPH</one> <two>unterscheidet sich von</two> <one>NADH</one> durch eine zusätzliche Phosphatgruppe an ... welcher Position? An <one>Position 2</one> des Riboserings.
|
40
|
+
- <one>Laktat</one> hat welche chemische Struktur? COO⁻ am Ende; dann -C=OH im zentralen Bereich; und eine -CH₃ Methylgruppe terminal gelegen. URL: https://de.wikipedia.org/wiki/Lactate
|
41
|
+
- The enzyme <one>pyruvate dehydrogenase</one> has three components: <two>E1</two>, <two>E2</two>, <two>E3</two>. <three>What does E1 do</three>? It <one>decarboxylates Pyruvate</one> - thus, a <two>net loss of CO₂</two> occurs here.
|
42
|
+
- Damit eine Zelle <one>Glykogen</one> <two>abbauen kann</two> wird welches chemische Element benötigt? <one>Phosphor</one>. URL: https://de.wikipedia.org/wiki/Glykogen#Glykogen-Abbau
|
43
|
+
- Does the <one>metabolome</one> <two>include enzymes</two>? <one>No</one>. URL: https://en.wikipedia.org/wiki/Metabolome
|
44
|
+
- Was ist das Input-Molekül der <one>Pyruvate kinase</one>? <one>Phosphoenolpyruvate</one> (<two>PEP</two>).
|
45
|
+
- <one>Welche Rolle</one> erfüllt <two>Aspartat</two> im Harnstoffzyklus? <two>Aspartat</two> <one>liefert 1x N Atom</one>.
|
46
|
+
- Über welche zwei wichtigen <one>Reduktionsäquivalente</one> sind <two>Katabolismus</two> und <two>Anabolismus</two> gekoppelt? Über <one>FADH₂</one> und <one>NADH</one>.
|
47
|
+
- Im Metabolismus: wenn aus <one>Serin</one> eine Wassergruppe entfernt wird, entsteht ... ? <one>Aminoacrylat</one>.
|
48
|
+
- Welche metabolische Rolle spielt Carnitin? Aktivierte Fettsäuren werden unter Kopplung an Carnitin in das Mitochondrium transportiert.
|
49
|
+
- Beim <one>Aminosäureabbau</one>: als Hauptprodukt beim Abbau der C3-Familie (zum Beispiel von Alanin, Serin oder Cystein) entsteht welche Substanz? <one>Pyruvat</one>.
|
50
|
+
- <one>Welches Enzym</one> <two>baut UDP-Glucose in Glykogen ein</two>? Die <one>Glykogen-Synthase</one>.
|
51
|
+
- Was muss im <one>Calvin-Zyklus</one> regeneriert werden? <one>Ribulose-1,5-bisphosphat</one>.
|
52
|
+
- Kann das Gehirn Fettsäuren zur Energiegewinnung heranziehen? Nein.
|
53
|
+
- Das Enzym <one>Glykogen-Phosphorylase</one> ist extrem wichtig für den menschlichen Metabolismus; sie setzt Glucose aus Glykogen frei. Dieses Enzym wird über verschiedene Moleküle reguliert, wie zum Beispiel über einen erhöhten Adrenalinspiegel, der die aktive Konformation des Enzyms begünstigt. <two>Nenne eine weitere natürliche Möglichkeit dieses Enzym zu aktivieren, ohne hierzu irgendwelche Moleküle zu benötigen</two>. A: Aktivierung durch einen <one>elektrischen Reiz</one>.
|
54
|
+
- <one>Which pathway</one> is the main or exclusive pathway <two>for the assimilation of D-galactose</two> by most microorganisms? The <one>Leloir pathway</one>.
|
55
|
+
- <one>Fermentation</one> <two>occurs as either</two> ... <two>or</two> ... ? <one>either</one> <two>lactic acid fermentation</two> <one>or</one> <two>alcohol fermentation</two>.
|
56
|
+
- Was passiert im <one>glyoxylate pathway</one>? <one>Acetyl-CoA</one> <two>wird in Glucose konvertiert</two>.
|
57
|
+
- The <one>two major sets of reactions in the plant</one> <two>during photosynthesis</two> are ... ? (1) the <one>light reactions</one> (2) the <one>Calvin cycle</one>
|
58
|
+
- Die <one>Aspartat-Transcarbamoylase</one> (<two>ATCase</two>) ist <two>ein Schlüsselenzym</two>, die in der Biosynthese von ... eine wichtige Rolle spielt. A: <one>DNA-Bausteinen</one>.
|
59
|
+
- Die <one>Argininosuccinat-Synthase</one> kondensiert <two>Citrullin</two> <three>mit ...</three>? <one>Aspartat</one>.
|
60
|
+
- <one>Welches Enzym</one>, als Teil der <two>Glykogensynthese</two>, konvertiert <three>Glucose-6-Phosphat</three> in <three>Glucose-1-Phosphat</three>? Die <one>Glucosephospat-Mutase</one>.
|
61
|
+
- <one>ATP</one>, <two>bei einem neutralen pH</two>, trägt <three>n negative Ladungen</three>? <one>4</one>.
|
62
|
+
- Der <one>Calvin-Zyklus</one> <two>kann CO₂ fixieren</two>. <three>Welches Molekül wirkt hier als CO₂-Akzeptor</three>? <one>Ribulose-1,5-bisphosphat</one>.
|
63
|
+
- The <one>waste products</one> <two>of cellular respiration</two> are ... ? (1) <one>carbon dioxide</one> (<two>CO₂</two>), and (2) <one>water</one> (<two>H₂O</two>)
|
64
|
+
- Name <one>three major starting materials</one> for biosynthesis. A: (1) <one>pyruvate</one> (2) <one>acetyl-CoA</one> (3) citric acid cycle intermediates
|
65
|
+
- <one>Wie</one> <two>reguliert die Zelle</two> die Menge ihrer Glykogenpartikel? Über die <two>Zahl</two> verfügbarer <one>Glykogeninmoleküle</one>.
|
66
|
+
- The <one>pentose phosphate pathway</one> <two>also yields which substrate that is an essential precursors in nucleotide biosynthesis</two>? <one>R5P</one>, which is <two>ribose-5-phosphate</two>.
|
67
|
+
- <one>Oxalate</one>, also <two>die Salze der Oxalsäure</two>, besitzen wieviele C-Atome? <one>Zwei</one>.
|
68
|
+
- Nenne <one>zwei Enzyme</one> des <two>Pentosephosphatzyklus</two>. A: (1) <one>Transaldolase</one> (2) <one>Transketolase</one>
|
69
|
+
- Wie wirken <one>Entkoppler der Atmungskette</one>? Entkoppler der Atmungskette bauen den Protonengradienten über der Mitochondrienmembran ab. Dadurch gelangen weniger Protonen über die ATP-Synthase in die Mitochondrienmatrix zurück - die <one>ATP-Synthese nimmt daher ab</one>.
|
70
|
+
- Im Glucose-Alanin-Zyklus gelangt Alanin in die Leber. Dort wird Alanin zu ... konvertier. A: Pyruvat.
|
71
|
+
- Nenne die <one>zehn</one> <two>Enzyme der Glykolyse</two>. A: (1) <one>Hexokinase</one> (2) <one>Glucosephosphat-Isomerase</one> (3) <one>Phosphofructokinase</one> (4) <one>Aldolase</one> (5) <one>Triosephosphat-Isomerase</one> (6) Glycerinaldehyd-3-phosphat-Dehydrogenase (7) Phosphoglycerat-Kinase (8) <one>Phosphoglycerat-Mutase</one> (9) <one>Enolase</one> (10) <one>Pyruvat-Kinase</one>
|
72
|
+
- <one>Wie groß</one>, <two>in n kDa</two>, ist der <three>Pyruvat-Dehydrogenase Komplex</three>? <one>7800 kDa</one>.
|
73
|
+
- Is <one>acetyl-CoA</one> <two>an intermediate of the Krebs cycle</two>? <one>Yes</one>.
|
74
|
+
- <one>Which tissues</one> <two>are rich in pentose phosphate pathway enzymes</two>? <one>Tissues</one> <two>most heavily involved in fatty acid and cholesterol biosynthese</two>.
|
75
|
+
- Name <one>three</one> <two>poikilothermic animals</two>. A: (1) <one>amphibians</one> (2) <one>fish</one> (3) <one>reptiles</one>
|
76
|
+
- Aus <one>Glyoxylat</one> kann im <two>Glyoxylatzyklus</two> <three>welche Substanz gewonnen werden</three>? <one>Malat</one>. Pflanzen können durch den Glyoxylatzyklus Glucose herstellen, über spezielle Organellen, die <two>Glyoxysomen</two> genannt werden.
|
77
|
+
- Through the <one>... cycle</one>, <two>ATP and NADPH are used to fix CO₂</two>. A: the <one>Calvin-Benson cycle</one>. URL: https://en.wikipedia.org/wiki/Calvin_cycle#Calvin_cycle
|
78
|
+
- Der <one>biosynthetische Vorläufer</one> (in der Zelle) von IMP ist ... ? <one>Phosphoribosyl-amin</one>.
|
79
|
+
- Das Schlüsselenzym für die Isoprenstoffwechsels ist ... ? HMG-CoA-Reduktase.
|
80
|
+
- <one>Isopentenylpyrophosphat</one> <two>wird über welchen Weg hergestellt</two>? Über den <one>Mevalonatweg</one>. URL: https://de.wikipedia.org/wiki/Mevalonatweg
|
81
|
+
- Die Synthese von Desoxyribonucleotiden aus Ribonucleotiden erfolgt über welches Enzym? Der <one>Ribonucleotid-Reduktase</one>.
|
82
|
+
- In the <one>de-novo pathway</one>, the <two>pyrimidine ring</two> <three>is synthesized as ...</three>? <one>Orotate</one>. URL: https://en.wikipedia.org/wiki/Orotic_acid
|
83
|
+
- Do <one>glyoxysomes</one> <two>contain</two> the enzyme <three>aconitase</three>? <one>No</one>, they do not. URL: https://en.wikipedia.org/wiki/Glyoxysome
|
84
|
+
- The <one>NADPH</one> <two>produced in the pentose phosphate pathway</two> is especially important in which other <three>biosynthetic pathway</three>? In <one>fatty acid synthesis</one>. URL: https://en.wikipedia.org/wiki/Fatty_acid_synthesis
|
85
|
+
- Der <one>Kofaktor</one> der <two>Phosphofructokinase</two> ist ... ? <one>Mg</one><two>²⁺</two>.
|
86
|
+
- <one>Enzyme</one> <two>können in ihrer enzymatischen Aktivität modifiziert werden</two>. Nenne hierzu zwei <three>grundsätzliche Möglichkeiten</three>. A: (1) <one>allosterische Modulation</one> (2) <one>kovalente Modifikation</one>
|
87
|
+
- Nenne <one>vier verschiedene</one> <two>typische Gärungsprodukte</two>. A: <one>BALE</one> (1) <one>Butyrat</one> (2) <one>Aceton</one> (3) <one>Lactat</one> (4) <two>Ethanol</two>
|
88
|
+
- What is meant with the term <one>Acetogenesis</one>? This is <one>the biological production of acetate</one> (<three>C₂H₃O⁻</three>), from <two>CO₂</two> and <royalblue>hydrogen</royalblue>. URL: https://en.wikipedia.org/wiki/Acetogenesis
|
89
|
+
- The <one>light reactions</one> <two>during photosynthesis</two> feed which two very important molecules into the Calvin cycle? (1) <one>ATP</one> (2) <one>NADPH</one>
|
90
|
+
- Im <one>Cori-Zyklus</one> werden <two>welche zwei Substanzen</two> wechselseitig ausgetauscht? (1) <one>Laktat</one> (2) <one>Glucose</one>
|
91
|
+
- Nenne den <one>Hauptabbauweg</one> für den <two>Glykogen-Abbau</two> - also die darin involvierten Substanzen - über die Leber. A: (1) <one>Glykogen</one> (2) <one>Glucose-1-Phosphat</one> (3) <one>Glucose-6-Phosphat</one> (4) <one>Glucose</one>
|
92
|
+
- Im <one>aeroben Abbauweg</one>: <two>was wird</two> direkt <two>aus</two> <three>Pyruvat</three>? <one>Acetyl-CoA</one>. URL: https://de.wikipedia.org/wiki/Acetyl-Coenzym_A
|
93
|
+
- <one>Andere Bezeichnung</one> für den <two>Harnstoffzyklus</two>? <one>Ornithinzyklus</one>.
|
94
|
+
- <one>FAD</one> <two>kann was genau aufnehmen</two>? <one>Zwei Protonen</one>.
|
95
|
+
- Im <one>Cori-Zyklus</one> kommt die <two>Lactat-Dehydrogenase</two> zum Einsatz. <three>Dieses Enzym ist ein Tetramer</three>, bestehend aus H-Typ und M-Typ. Wofür stehen diese Buchstaben? (1) <one>H-Typ</one> ... kommt überwiegend <two>im Herz</two> vor (2) <one>M-Typ</one> ... kommt überwiegend <two>im Skelett-Muskel</two> vor
|
96
|
+
- Sind <one>Vögel</one> <two>poikilotherme Organismen</two>? <one>Nein</one>.
|
97
|
+
- For <one>ATP hydrolysis</one> to be possible: <two>which molecule</two>, aside from phosphor, <two>is needed here</two>? A <one>water molecule</one> is necessary for ATP hydrolysis to occur.
|
98
|
+
- <one>ATP</one> ist <two>der wichtigste Phosphatgruppenüberträger in der Zelle</two>. <three>Nenne drei weitere Metabolite die hier eine ähnliche Funktion erfüllen mögen</three>. A: (1) <one>PEP</one> (<two>Phosphoenolpyruvat</two>) (2) <one>Carbamoylphosphat</one> (3) <one>Kreatinphosphat</one>
|
99
|
+
- Metabolische Ursache von <one>Gicht</one>? Eine <one>erhöhte</one> <two>Konzentration der Harnsäure im Blut</two>.
|
100
|
+
- Was meinen wir mit dem <one>Yin</one>/<one>Yang des Metabolismus</one>? Das <one>Wechselspiel</one> zwischen <two>katabolen Prozessen</two> und <two>anabolen Prozessen</two>.
|
101
|
+
- Eine Zelle mag <one>Pyruvat</one> in <one>Laktat</one> konvertieren - <two>aber was hat sie davon eigentlich</two>? <one>NAD⁺</one> <two>wird hierbei regeneriert</two>.
|
102
|
+
- Name <one>the three most important</one> <two>activated carrier molecules</two> in the cell. A: (1) <one>ATP</one> (2) <one>NADH</one> (3) <one>NADPH</one>
|
103
|
+
- <one>Living systems</one> <two>must maintain not only order</two> <three>but also ...</three>? A <one>steady state</one>.
|
104
|
+
- <one>Mit welcher Substanz</one> beginnt der <two>Synthesezweig des Tryptophan</two>. A: <one>Anthranilat</one>. URL: https://de.wikipedia.org/wiki/Anthranils%C3%A4ure
|
105
|
+
- Nenne <one>drei Substanzen</one> die im <two>Salvage-Pathway</two> entstehen. A: (1) <one>AMP</one> (2) <one>IMP</one> (3) <one>GMP</one>
|
106
|
+
- Die <one>Propionsäuregärung</one> <two>verwendet was als Substrat</two>? <one>3x Laktat</one>.
|
107
|
+
- From <one>Glucose-1-phosphate</one> two components can be synthesized that begin with the letter <two>"G"</two>. <three>Which ones are these</three>? A: (1) <one>Glycogen</one> (2) <one>Glucuronate</one>
|
108
|
+
- <one>Die wichtigste Substanz</one> die <two>im Cori-Zyklus synthetisiert wird</two> ist ... ? <one>Laktat</one>.
|
109
|
+
- <one>Welche Substanz des Citratzyklus</one> entsteht im Zuge des <two>Harnstoffzyklus</two>? <one>Fumarat</one> - und zwar kurz nach Argininosuccinat.
|
110
|
+
- Allgeinem - was katalysieren die <one>Hexokinasen</one> und welches Beispiel kann hierzu gegeben werden? Die Hexokinase sind Enzyme aus dem Kohlenhydratstoffwechsel, die <one>Hexosen</one> (Zucker mit sechs Kohlenstoffatomen) <two>phosphorylieren</two>. Dies überführt diese Hexosen zu <three>Hexose-Phosphaten</three>. Ein Beispiel wäre die Überführung von <four>Glucose</four> in <four>Glucose-6-phosphat</four>.
|
111
|
+
- Eine Zelle kann eventuell <one>Malat</one> herstellen. <two>Nenne die beiden dafür benötigten Ausgangssubstanzen</two>. A: (1) <one>Glyoxylat</one> (2) <one>Acetyl-CoA</one>
|
112
|
+
- Die <one>Butyrat-Kinase</one> <two>erstellt welche Substanz</two>? <one>Buttersäure</one>. URL: https://en.wikipedia.org/wiki/Butyrate_kinase
|
113
|
+
- Nenne <one>ein Substrat der Glykolyse</one>, das zur <two>ATP-Gewinnung</two> <three>herangezogen wird</three>. A: <one>PEP</one>: <two>Phosphoenolpyruvat</two>. URL: https://de.wikipedia.org/wiki/Phosphoenolbrenztraubens%C3%A4ure
|
114
|
+
- Wie wird die <one>Glykogen-Synthase</one> <two>allgemein inaktiviert</two>? Durch <one>Phosphorylierung</one>. URL: https://en.wikipedia.org/wiki/Glycogen_synthase
|
115
|
+
- In <one>metabolic flux analysis</one>: what does the <two>elasticity coefficient</two> describe? The <one>elasticity coefficient</one> describes the change of a reaction rate in relation to the change of the concentration of a metabolite.
|
116
|
+
- Can <one>Aspergillus</one> metabolize <two>D-Tartrate</two>? <one>Yes</one> - <two>Pasteur already discovered this</two>.
|
117
|
+
- Nenne <one>zwei</one> <two>Guanidium-phosphate</two>. A: (1) <one>Argininphosphat</one> (2) <one>Creatinphosphat</one>
|
118
|
+
- <one>Wo</one> kann <two>Ribulose</two> im Metabolismus gefunden werden? <two>Ribulose</two> ist ein <one>Stoffwechselzwischenprodukt bei der Photosynthese</one>.
|
119
|
+
- The (metabolic) Circle of Life is ... ? The <one>Calvin Cycle</one> - aka <two>photosynthesis</two>.
|
120
|
+
- Was sind <one>sekundäre Gärer</one>? Sekundäre Gärer nehmen die <two>Gärprodukte primärer Gärer</two> auf - und vergären diese weiter zu Kohlenstoffdioxid (CO₂), Acetat oder Wasserstoff (H2).
|
121
|
+
- What is meant with the term <one>photophosphorylation</one>? Photophosphorylation means making ATP using the energy from light.
|
122
|
+
- The <one>most important product of cellular respiration</one> is ... ? <one>ATP</one>.
|
123
|
+
- One of the most commonly seen waste product of cellular respiration is ... ? <one>water</one>.
|
124
|
+
- <one>Riboflavin</one> <two>besitzt wieviele Ringe</two>? <one>3</one>. URL: https://de.wikipedia.org/wiki/Riboflavin
|
125
|
+
- <one>Warum</one> kann der <two>Glyoxylatzyklus</two> als ein Beispiel für eine <three>anaplerotische Reaktion</three> betrachtet werden? Da das freiwerdende <two>Succinat</two> in den Citratzyklus eingespeist werden kann. (Mnemonic: <one>Glyoxylat liefert Succinat für den Citrat-Zyklus</one>.)
|
126
|
+
- <one>Was macht</one> die <two>Leber</two> mit dem <three>Lactat</three> aus dem Blut? Sie wandelt dieses auf dem Wege der Gluconeogenese, über Oxalacetat, in <one>Glucose</one> zurück.
|
127
|
+
- The <one>glyoxylate-pathway</one> makes use of <two>three enzymes</two> that can also be found in the citric acid cycle. Name them. A: (1) <one>citrate synthase</one> (2) <one>aconitase</one> (3) <one>malate dehydrogenase</one>
|
128
|
+
- <one>Which component</one> of the <two>citric acid cycle</two> is <three>a major acceptor of ammoniak during nitrogen assimilation</three>? <one>Alpha-Ketoglutarate</one>. URL: https://en.wikipedia.org/wiki/Alpha-Ketoglutaric_acid
|
129
|
+
- <one>Where</one> does the <two>unique Anammox reaction</two> occur? In the <one>anammoxosome</one> (<two>an-amm-oxo-some</two>). URL: https://www.ncbi.nlm.nih.gov/pubmed/23615199
|
130
|
+
- Der <one>Calvin-Zyklus</one> <two>besteht aus wievielen Stufen</two>? Aus <one>drei</one>.
|
131
|
+
- Die <one>Hefe-Zelle</one> kann <one>Lactate</one> aus <one>Pyruvate</one> herstellen. <three>Welchen biosynthetischen Zweck hat das ganze</three>? <one>NAD⁺ wird hierbei regeneriert</one>, ausgehend von NADH.
|
132
|
+
- Die <one>Umwandlung</one> der elektromotorischen in eine protonenmotorische Kraft wird von ... durchgeführt. A: Von der <one>Atmungskette</one>.
|
133
|
+
- Abseits des Harnstoffzyklus ist <one>Carbamoylphosphat</one> auch <two>ein essenzieller Vorläufer der ... synthese</two>. A: Der <one>Pyrimidinbiosynthese</one>.
|
134
|
+
- Das <one>erste Schlüsselenzym des Calvin-Zyklus</one> <two>ist ... </two>? <one>Ribulose-1,5-bisphosphat-Carboxylase</one> (<two>RUBISCO</two>).
|
135
|
+
- Sind <one>Menschen</one> <two>ureotelische Organismen</two>? <one>Ja</one>.
|
136
|
+
- Nenne die <one>drei Substrate</one>, <two>die für die alkoholische Gärung wichtig sind</two>. A: (1) <one>Pyruvat</one> (2) <one>Acetaldehyd</one> (3) <one>Ethanol</one>
|
137
|
+
- <one>Welche Prozesse</one> laufen an der <two>mitochondrialen Matrix</two> ab? (1) <one>Atmungskette</one> (2) <one>Citratzyklus</one>
|
138
|
+
- <one>Warum</one> verwendet die Zelle die <two>Hydrolyse von Kreatinphosphat</two>? Um <one>sehr schnell ATP gewinnen zu können</one>. URL: https://de.wikipedia.org/wiki/Energiebereitstellung
|
139
|
+
- Give a <one>biological example</one> for an <two>extragenomic influence on the Metabolome</two>. A: The <one>gut microflora</one> can serve as an example here.
|
140
|
+
- Nenne <one>zwei Substanzen</one> die mit dem Buchstaben <two>G</two> beginnen und in das Peroxisom transportiert werden. A: (1) <one>Glykolat</one> (2) <one>Glyoxylat</one>
|
141
|
+
- Nenne alle Schritte und Enzyme der <one>Glykolyse</one> in Reihenfolge. A: (1) <one>Glucose</one> (durch die <two>Hexokinase</two>) in Glu-6-Phosphat (2) <one>Glu-6-Phosphat</one> (durch die <royalblue>Phosphoglucose-Isomerase</royalblue>) in Fructose-6-Phosphat (3) <one>Fructose-6-Phosphat</one> (durch die <two>Phosphofructokinase</two>) in Fructose-1,6-bisphosphat (4) Glycerin-aldehydphosphat (GAP) (durch die "Glycerinaldehydphosphat-Dehydrogenase" )in 3-Phosphoglyceroylphosphat (5) Phosphoglyceratkinase (6) 3-Phosphoglycerat (7) Phosphoglyceramutase (8) 2-Phosphoglycerat (9) Enolase (10) PEP (11) Pyruvatkinase (12) <one>Pyruvat</one>
|
142
|
+
- <one>Why must</one> a larger animal's metabolism be slower than a smaller animal's metabolism? This is necessary in order to <one>prevent overheating</one>.
|
143
|
+
- The <one>ATP</one>/<one>ADP cycle</one> is used to link exergonic and endergonic reactions in a system called ... ? <one>energy coupling</one>.
|
144
|
+
- From the point of view of metabolism: we should view intracellular ATP levels not merely as ATP levels but ... ? As ADP-ATP levels, as it is more of an active cycle: the <two>ATP</two>/<two>ADP cycle</two>.
|
145
|
+
- Name <one>the four enzymes</one> of the <two>glyoxylate-cycle</two>. A: (1) <one>citrate synthase</one> (2) <one>isocitrate lyase</one> (3) <one>malate synthase</one> (4) <one>malate dehydrogenase</one>
|
146
|
+
- <one>Wann</one> immer ist die <two>Glykogen-Synthase</two> <three>aktiv</three>? Immer dann wenn <one>ein Überschuss an Glucose</one> vorhanden ist. URL: https://de.wikipedia.org/wiki/Glykogensynthasen
|
147
|
+
- <one>Warum</one> ist die <two>oxidative Phosphorylierung</two> für den menschlichen Körper wichtig? Die oxidative Phosphorylierung ist wichtig da sie ATP regeneriert.
|
148
|
+
- Beim <one>Glykogenabbau</one> wird <two>UDP-Glucose</two> <three>woran angeheftet</three>? An das <one>nichtreduzierende Ende</one>.
|
149
|
+
- Within a given cell, <one>name two different ways</one> how the concentration of <two>[AMP]</two> might increase. A: (1) <one>reduced nutrient supply</one> (2) <one>increased physical exercise</one>
|
150
|
+
- Die <one>Energieumwandlung in allen Organismen</one> beruht auf ... ? <one>Redoxreaktionen</one>.
|
151
|
+
- Benenne ein konkretes Beispiel, wieso auch in der Biotechnologie, <one>omics</one>-Wissen nützlich sein kann. A: Wenn sich zum Beispiel <one>ein Metabolit anstaut</one>, so können wir diesen Block eventuell durch eine <two>Genüberexpression</two> überwinden.
|
152
|
+
- Was ist <one>der Kofaktor</one> der <two>Alanin-Aminotransferase</two>? <one>Pyridoxalphosphat</one>. URL: https://de.wikipedia.org/wiki/Pyridoxalphosphat
|
153
|
+
- Name <one>an important precursor</one> in the synthesis of nucleotides. A: <one>Ribose 5-phosphate</one>.
|
154
|
+
- In metabolism: what is usually meant with the term <one>static information</one> here? This refers to the genome, that is, the static information contained in all genes.
|
155
|
+
- Eigentlich sollte der <one>Calvin-Zyklus</one> (die Dunkelreaktion) ...-Zyklus genannt werden. A: <one>Calvin-Benson-Zyklus</one>.
|
156
|
+
- <one>Polysaccharides</one> <two>are synthesized from what kind of glucose</two>, in general? From <one>activated forms of glucose</one>.
|
157
|
+
- In einer bakteriellen Zelle werden vor allem <one>welche drei Substanzen</one> als <two>anaplerotischer Knotenpunkt</two> bezeichnet? (1) <one>Pyruvat</one> (2) <one>PEP</one> (3) <one>Oxalacetat</one>
|
158
|
+
- <one>Welche drei Substanzen</one> meinen wir mit der <two>metabolischen Troika</two> in der Zelle? (1) <one>Glucose-6-phosphat</one> (2) <one>Pyruvat</one> (3) <one>Acetyl-CoA</one>
|
159
|
+
- Was heißt (griechisch) <one>metabole</one>? <one>Veränderung</one>.
|
160
|
+
- Die <one>Regulation des Harnstoffzyklus</one> <two>erfolgt primär durch welches Enzym</two>? Durch die <one>Carbamoylphosphatsynthetase I</one>.
|
161
|
+
- Im menschlichen Körper: die Enzyme für den <one>Glycogenstoffwechsel</one> befinden sich vor allem in welchen Zellen? (1) <one>Muskelzellen</one> (2) <one>Leberzellen</one>
|
162
|
+
- Die <one>Argininosuccinat-Synthase</one> produziert <two>Argininosuccinat</two>. <three>Nenne die beiden Input-Moleküle hierzu</three>. A: (1) <one>Citrullin</one> (2) <one>Aspartat</one>
|
163
|
+
- <one>Metabonomics</one> <two>makes use of which technology</two> to study metabolomics? <one>NMR technology</one>.
|
164
|
+
- The <one>hydrolysis of ATP</one> will yield approximately n kJ/mol? -31.8 kJ / mol.
|
165
|
+
- Die <one>mitochondriale DNA des Menschen</one> <two>kodiert für n Proteine der Atmungskette</two>? <one>13</one>.
|
166
|
+
- Der <one>Citratzyklus</one> ist metabolisch gesehen <two>ein Bindeglied zwischen ...</two>? <one>Substratabbau</one> und <one>ATP-Bereitstellung</one>.
|
167
|
+
- Im Citratcyclus gibt es <one>zwei Decarboxylierungsreaktionen</one>. <two>Nenne die beiden beteiligten Enzyme</two>. A: (1) <one>Isocitrat-Dehydrogenase</one> (2) <one>Alpha-Ketoglutarat-Dehydrogenase-Komplex</one>
|
168
|
+
- Give <one>three possible reasons</one> for <two>a decrease of growth rate</two> by overexpression of recombinant proteins in E. coli (aka the <three>metabolic burden of protein production</three>). A: (1) demand of precursers (amino acids, nucleotides) (2) demand of energy (3) other metabolic imbalances (e.g. redox)
|
169
|
+
- What does the <one>pentose phosphate pathway</one> ultimately yield? <one>NADPH</one>.
|
170
|
+
- In <one>cellular metabolic engineering</one>: <two>name a threat for improved protein production</two>. A: The <one>metabolic burden</one>.
|
171
|
+
- In <one>alcoholic fermentation</one>: <two>name the two enzymes that convert pyruvate to acetaldehyde, and then acetaldehyde to ethanol</two>. A: (1) <one>pyruvate decarboxylase</one> (2) <one>alcohol dehydrogenase</one>
|
172
|
+
- Im <one>Glyoxylatzyklus</one>: <two>welche Substanz dieses Zyklus</two> wird charakteristischerweise in einer nachfolgenden Reaktion stark verändert, durch ein besonderes Enzym des Glyoxylatzyklus? <two>Isocitrat</two> - es wird in <one>Succinat</one> und <one>Glyoxylat</one> gespalten.
|
173
|
+
- Der <one>Harnstoffzyklus</one> liefert Harnstoff. Abgesehen davon das hierbei der toxische Ammoniak vermieden wird - <two>welchen weiteren biologischen Sinn mag der Harnstoffzyklus dienen</two>? Das beim Abbau von Proteinen die Aminogruppen der Aminosäuren aus dem Körper geschleust werden kann.
|
174
|
+
- <one>Wo</one> in einer Zelle findet die oxidative Phosphorylierung statt? In den <one>Mitochondrien</one>.
|
175
|
+
- Wenn <one>zwei Stoffwechselwege</one> <two>reziprok reguliert</two> werden, was bedeutet dies? Das sie in der gleichen Zelle nicht simultan ablaufen können.
|
176
|
+
- <one>Welche Rolle</one> spielt das Gen <two>CYP2D6</two> (<three>Cytochrom P450</three>)? Dieses Gen spielt eine Rolle bei der <one>Entgiftung von pflanzlichen Chemikalien</one>. Es ist überhaupt eines der wichtigsten Enzyme, das im Metabolismus von Xenobiotika involviert ist.
|
177
|
+
- Nenne <one>zwei</one> <two>mobile Elektronenüberträger der Mitochondrien</two>. A: (1) <one>Ubichinon</one> (2) <one>Cytochrom c</one>
|
178
|
+
- Wie heißt der <one>Stoffwechselweg</one>, der <two>Cholesterin produziert</two>? <one>Isoprenoidstoffwechsel</one>.
|
179
|
+
- Aus <one>Carbamoylphosphat</one> wird im Harnstoffzyklus ...? <one>Citrullin</one>. (Mnemonic: Beide starten mit <two>C</two>.)
|
180
|
+
- Bakterien können <one>Acetat</one> generieren. <two>Aus welchen zwei Substanzen</two>? (1) <one>CO₂</one> (2) <one>H₂</one>
|
181
|
+
- Die <one>Transketolase</one> nimmt <two>C2 von Xylulose-5-phosphat</two>, überträgt diese C2-Gruppe auf Ribose-5-phosphat, und erzeugt dadurch ... ? <one>Sedoheptulose-7-phosphat</one>. URL: https://de.wikipedia.org/wiki/Sedoheptulose-7-phosphat
|
182
|
+
- Jedes <one>ATP-Molekül</one> <two>im menschlichen Körper</two> wird etwa n-mal wieder aufbereitet, täglich? Etwa <one>300-mal</one>.
|
183
|
+
- From a biochemical point of view: which part of <one>NAD⁺</one> is changed during a cellular reaction? The <one>nicotinamide ring</one>. URL: https://en.wikipedia.org/wiki/Nicotinamide
|
184
|
+
- Nenne die <one>drei elektronengetriebenen Protonenpumpen der Atmungskette</one>. A: (1) <one>NADH-Q-Oxidoreduktase</one> (2) <one>Q-Cytochrom-c-Oxidoreduktase</one> (3) <one>Cytochrom-c-Oxidase</one>
|
185
|
+
- <one>Glycogenin</one> hat <two>n kDa</two>? <one>37 kDa</one>. URL: https://de.wikipedia.org/wiki/Glycogenin
|
186
|
+
- Nenne <one>zwei metabolische Pfade</one>, die sowohl <two>im Mitochondrium</two> als auch <two>im Cytosol</two> ablaufen. A: (1) <one>Gluconeogenese</one> (2) <one>Harnstoffzyklus</one>
|
187
|
+
- Die abschließende Phase der oxidativen Phosphorylierung wird von ... ausgeführt. A: Von der <one>ATP Synthase</one>.
|
188
|
+
- Die <one>Urease</one> <two>setzt welche zwei Substanzen frei</two>? (1) <one>CO₂</one> (2) 2x <one>NH₃</one>
|
189
|
+
- Nenne <one>zwei Schritte</one> des <two>globalen Stickstoffkreislaufes</two>, die nur von Bakterien oder Archaeen, nicht aber von Eukaryoten katalysiert werden. A: (1) <one>anaerobe Ammoniumoxidation</one> (2) <one>Stickstofffixierung</one>
|
190
|
+
- Andere Bezeichnung für <one>anaplerotische Reaktionen</one>? <one>Auffüllreaktionen im Metabolismus</one>.
|
191
|
+
- Ein einfacherer Name für den <one>Cori-Zyklus</one> ist ... ? <one>Glucose-Lactat-Kreislauf</one>.
|
192
|
+
- Was ist der <one>Cori-Zyklus</one>? Der gegenseitige Austausch zwischen im Muskel anfallendem <one>Laktat</one> und <one>Glucose</one> aus der Leber. URL: https://de.wikipedia.org/wiki/Cori-Zyklus
|
193
|
+
- Der <one>Cori-Zyklus</one> verbindet die muskuläre ... mit der hepatischen ... ? A: <one>muskuläre Glykolyse</one> mit der <two>hepatischen Gluconeogenese</two>.
|
194
|
+
- Das wichtigste Enzym des <one>Cori-Zyklus</one> ist ... ? Die <one>Lactat-Dehydrogenase</one>.
|
195
|
+
- The <one>Krebs bicycle</one> <two>connects which two pathways</two>? (1) the <one>citric acid cycle</one> (2) the <one>urea cycle</one>
|
196
|
+
- Wenn <one>Pyruvat</one> <two>carboxyliert</two> wird entsteht ... ? <one>Oxalacetat</one>.
|
197
|
+
- Zu <one>Untersuchungen des Metaboloms</one> eignen sich vor allem <two>welche analytischen Techniken</two>? (1) <one>Massenspektrometrie</one> (2) <one>Methoden der molekularen Spektroskopie</one>
|
198
|
+
- Die <one>ATP-Synthase</one> <two>besteht aus wievielen Untereinheiten</two>? <one>6</one>, ein Hexamer: 3xAlpha und 3xBeta. URL: https://en.wikipedia.org/wiki/ATP_synthase
|
199
|
+
- <one>Fructose-6-phosphate</one> is <two>a metabolic precursor for which acid</two>? <one>Muraminic acid</one>.
|
200
|
+
- Allgemein, in einem Stoffwechselweg: <one>welche Enzyme sind besonders wichtig</one>? All jene Enzyme, die praktisch <one>irreversible Reaktionen</one> katalysieren.
|
201
|
+
- Nenne <one>die beiden wichtigsten Elektronenüberträger</one> im Metabolismus. A: (1) <one>NADH</one> (2) <one>FADH₂</one>
|
202
|
+
- <one>Welche Reaktion</one> führt die <two>Cytochrom-c-Oxidase</two> durch? Sie katalysiert die Reduktion von molekularem Sauerstoff zu Wasser.
|
203
|
+
- Nenne <one>die drei Abschnitte des Stoffwechsels</one>. A: (1) <one>Katabolismus</one> (2) <one>Anabolismus</one> (3) <one>Amphibilismus</one>
|
204
|
+
- What are <one>the two main types of fermentation</one>? (1) <one>lactic acid fermentation</one> (2) <one>alcoholic fermentation</one>
|
205
|
+
- Name one of the most commonly observed consequences of a <one>metabolic load</one>. A: This <one>may decrease the rate of cell growth</one>.
|
206
|
+
- Die <one>Isocitrate Lyase</one> erzeugt ausgehend, von Isocitrate, welche <two>zwei Substanzen</two>? (1) <one>Succinat</one> (2) <one>Glyoxylat</one>
|
207
|
+
- In biochemistry: <one>which class of reactions is particularly prominent</one>? <one>Acid-base reactions</one>.
|
208
|
+
- Nenne <one>zwei wichtige metabolische Prozesse</one> die im <two>Cytosol</two> stattfinden. A: (1) <one>Glycolyse</one> (2) <one>Fettsäuresynthese</one>
|
209
|
+
- Give another name for the <one>Wood-Ljungdahl pathway</one>. A: This is the <one>reductive Acetyl-CoA pathway</one>. URL: https://en.wikipedia.org/wiki/Wood%E2%80%93Ljungdahl_pathway
|
210
|
+
- Summenformel von <one>Laktat</one>? <one>C₃H₆O₃</one>. (Sehr symmetrisch: <one>3,6,3</one>) URL: https://de.wikipedia.org/wiki/Lactate
|
211
|
+
- Was ist <one>die Bilanz des Glyoxylatzykluses</one>? Zwei <one>C2-Verbindungen</one> (<two>Acetat</two>) werden zu einer C4-Verbindung ("Succinat").
|
212
|
+
- <one>Which substance</one> leaves the <two>glyoxylate cycle</two>? <one>Succinat</one>.
|
213
|
+
- Welche <one>drei Möglichkeiten</one> haben <two>Stoffwechselpfade</two> (im Metabolismus)? (1) <one>konvergierend</one> (2) <one>divergierend</one> (3) <one>zyklisch</one>
|
214
|
+
- The archetypical example for <one>substrate-level phosphorylation</one> is ... ? The <one>second phase of glycolysis</one>. Here, <two>the phosphate group is transferred directly from a donor molecule</two>.
|
215
|
+
- Andere Bezeichnung für <one>Propionat</one>? <one>Propionsäure</one>. URL: https://de.wikipedia.org/wiki/Propions%C3%A4ure
|
216
|
+
- Wer oder was schüttet <one>Glukagon</one> ins Blut aus? Die <one>Bauchspeicheldrüse</one>. URL: https://de.wikipedia.org/wiki/Bauchspeicheldr%C3%BCse
|
217
|
+
- Im zellulären Stoffwechsel: nenne einen qualitativen Unterschied zwischen einer <one>Desaminierung</one> und einer <one>Transaminierung</one>. A: Die <one>Desaminierung</one> hat, im Gegensatz zur <two>Transaminierung</two>, eine <three>katabole Funktion</three>.
|
218
|
+
- Sehen wir <one>Substratkettenphosphorylierung</one> im Citratzyklus? Ja, und zwar bei der <one>Erzeugung von GTP</one>. <two>Succinyl-CoA</two> wird in <two>Succinat</two> konvertiert, durch das Enzym <one>Succinyl-CoA-Synthetase</one>. URL: https://en.wikipedia.org/wiki/Succinyl_coenzyme_A_synthetase
|
219
|
+
- Bei der <one>ATP-Regeneration</one> im Zuge der Gärung, gibt es <three>NAD⁺</three> als Wasserstoffakzeptor. Aus Pyruvat gehen welche zwei Produkte hervor, und aus Acetyl-CoA welche 3 Produkte? A: (1) <two>Pyruvat</two>: <one>Formiat</one> und <one>Laktat</one> (2) <two>Acetyl-CoA</two>: <one>Ethanol</one>, <one>Acetat</one> und <one>Butyrat</one>
|
220
|
+
- Does <one>Fermentation</one> have to be carried out in an <lightseagreen>anaerobic environment</lightseagreen>? No.
|
221
|
+
- Das Coenzym der <one>Transketolase</one> ist ... ? <one>TPP</one>. URL: https://de.wikipedia.org/wiki/Thiaminpyrophosphat
|
222
|
+
- What is the <one>product</one> of the <three>catabolic breakdown of Arginine</three>? <one>Alpha-ketoglutarate</one>.
|
223
|
+
- <one>Amino acid catabolism</one> results in waste ... (which substance)? <one>Ammonia</one>.
|
224
|
+
- Beim Molekül <one>NAD⁺</one>: welcher Teil trägt diese <two>positive Ladung</two>? Das <one>Stickstoff-Atom</one>.
|
225
|
+
- Wie nennen wir die Situation, das ein <one>Endprodukt</one> ein Enzym in seiner katalytischen Aktivität hemmen kann? Dies ist ein Beispiel für <one>negative Rückkopplung</one>.
|
226
|
+
- Another word for <one>acetate disproportionation</one>? <one>Acetoclastic</one>.
|
227
|
+
- Anderes Wort für eine <one>Wiedergewinnungsreaktion</one> im Metabolismus? <one>Salvage pathway</one>. URL: https://de.wikipedia.org/wiki/Salvage-Pathway
|
228
|
+
- Die <one>Alanin-Aminotransferase</one> benötigt für ihre Funktion welches Coenzym? <one>Pyridoxalphosphat</one> - ein Derivat des <two>Vitamin B6</two>.
|
229
|
+
- Bei welchen Reaktionen finden wir vor allem <one>NADP</one>/<one>NADPH</one>, und bei welchen Reaktionen finden wir vor allem <one>NAD</one>/<one>NADH</one>? (1) <one>NAD</one>/<one>NADH</one> hauptsächlich bei <two>katabolen Prozesse</two>. (2) <one>NADP</one>/<one>NADPH</one> hauptsächlich bei <two>anabolen Prozessen</two>.
|
230
|
+
- Was entsteht im <one>Anammox</one> Prozess? <one>N₂</one>. URL: https://de.wikipedia.org/wiki/Anammox
|
231
|
+
- Eine <one>Ketogruppe</one> (C=O) kann im Metabolismus reduziert werden, mittels NADPH, zu welch anderen Gruppe? Zu einer <one>Methylengruppe</one> (<two>-CH₂</two>). URL: https://de.wikipedia.org/wiki/Methylengruppe
|
232
|
+
- Der <one>Nicotinamidring</one> des <two>NAD⁺</two> nimmt was genau auf? (1) <one>ein Wasserstoffion</one> (2) <one>zwei Elektronen</one>
|
233
|
+
- <three>Welche Substanz</three> vermittelt zwischen der <one>Glykolyse</one> und dem <one>Citratzyklus</one>? <one>Acetyl-Coenzym A</one>. URL: https://de.wikipedia.org/wiki/Acetyl-Coenzym_A
|
234
|
+
- Was ist <one>der erste Schritt der Einbeziehung von Glucose in den Stoffwechsel</one>? <one>Anhängen einer Phosphatgruppe</one>.
|
235
|
+
- <two>Welches Enzym</two> erzeugt <one>Harnstoff</one> und <one>Ornithin</one>, ausgehend von <three>Arginin</three>? Die <one>Arginase</one>. URL: https://en.wikipedia.org/wiki/Arginase
|
236
|
+
- <one>1 g ausgeschiedener Harnstoff</one>, über den Urin, entsprechen wieviel Gramm mit der Nahrung aufgenommenem Protein? Etwa <one>3 g</one> (also ein <two>1:3 Verhältnis</two>).
|
237
|
+
- Summenformel von <one>Propinat</one>? <one>C₃H₆O₂</one> (<two>C₃|H₆|O₂</two>). URL: https://en.wikipedia.org/wiki/Propionate
|
238
|
+
- Give another, fancy expression for <one>photosynthesis</one>. A: The <one>major energy-trapping process on planet Earth</one>.
|
239
|
+
- Andere Bezeichnung für den <one>Intermediärstoffwechsel</one>? <one>Amphibolismus</one>.
|
240
|
+
- Name a <one>natural substrate</one> that <two>can inhibit the Phosphofructokinase</two>. A: <one>Citrate</one>.
|
241
|
+
- Nenne die <one>fünf Enzyme</one> des <two>Harnstoffzyklus</two>. A: (1) <one>Carbamoylphosphatsynthetase I</one> (2) <one>Ornithintranscarbamoylase</one> (3) <one>Argininosuccinatsynthetase</one> (4) <one>Argininosuccinatlyase</one> (5) <one>Arginase I</one>
|
242
|
+
- Allgemein formuliert in der Biochemie: was ist ein <one>Salvage-Pathway</one>? Dies bezeichnet <two>Stoffwechselwege</two>, die die <three>Synthese eines Biomoleküls</three> aus seinen <one>Abbauprodukten</one> bewerkstelligen.
|
243
|
+
- Nenne die <three>zwei Substanzen</three>, die <one>Citratzyklus</one> und <one>Glyoxylatzyklus</one> gemeinsam haben. A: (1) <one>Malat</one> (2) <one>Succinat</one>
|
244
|
+
- What is <one>cataplerosis</one>? This is <two>the removal of intermediate metabolites to prevent its accumulation</two>. The archetypical example is the <one>citric acid cycle</one>. URL: https://en.wiktionary.org/wiki/cataplerosis
|
245
|
+
- Nenne <one>die Enzyme des Harnstoffzyklus</one>. A: (1) <one>Carbamoylphosphat-Synthetase</one> (2) <one>Ornithin-Transcarbamylase</one> (3) <one>Argininosuccinat-Synthetase</one> (4) <one>Argininosuccinase</one> (5) <one>Arginase</one>
|
246
|
+
- Welche <one>Aldolase</one> kommt beim <two>Fructoseabbau</two> zum Tragen? Die <two>Aldolase B</two>. Im anschließenden Schritt wird <one>Fructose-1-phosphat</one> in <three>Glycerinaldehyd</three> und <three>Dihydroxyacetonphosphat</three> gespalten.
|
247
|
+
- Was macht der <one>Pyruvatdehydrogenase-Komplex</one>? Dieser <two>Multienzymkomplex</two> katalysiert die irreversible, <one>oxidative Decarboxylierung von Pyruvat</one>.
|
248
|
+
- Organismen, die über den <one>Glyoxylat-Zyklus</one> verfügen, wie zum Beispiel Prokaryoten oder Pflanzen, können aus Acetyl-CoA ... bilden, sodass in diesen Organismen auch Lipide als Kohlenhydratquelle dienen können. A: <one>Oxalacetat</one>.
|
249
|
+
- Give another term for <one>flux</one>. A: The <one>rate(v) of metabolite flow</one>.
|
250
|
+
- Über welche wichtigen <one>Reduktionsäquivalente</one> sind <two>Katabolismus</two> und <two>Anabolismus</two> gekoppelt? (1) <one>FADH₂</one> (2) <one>NADH</one>
|
251
|
+
- What is meant with the term <one>Metametabolomics</one>, essentially? This is when we also consider <one>bacterial metabolic pathways</one>, e. g. <two>the gut microbiome</two>.
|
252
|
+
- Kurz gesagt: was geschieht beim <one>reduktiven Acetyl-CoA-Weg</one>? (1) Acetate wird erzeugt. (2) Kohlenstoffdioxid wird fixiert.
|
253
|
+
- Was entsteht bei der <one>vollständigen Denitrifikation</one>? <one>N₂</one> (also wieder das Ausgangsprodukt).
|
254
|
+
- Nenne ein konkretes Beispiel wo der <one>reduktive Pentosephosphatweg</one> eingeschlagen wird. A: Im Zuge der CO₂-Assimilation in Pflanzen - dem <one>Calvin-Zyklus</one>.
|
255
|
+
- Was muss mit <one>Laktat</one> geschehen damit es zu <one>Pyruvat</one> konvertiert wird? Es muss <one>zwei H⁺ verlieren</one>.
|
256
|
+
- Welches <one>Enzym</one> katalysiert die Reaktion <three>L-Alanin + Alpha-Ketoglutarat = Pyruvat + L-Glutamat</three>? Die <one>Alanin-Aminotransferase</one>. URL: https://de.wikipedia.org/wiki/Alanin-Aminotransferase
|
257
|
+
- Was sind <one>Reaktionsketten</one>? Wenn <one>chemische Reaktionen gekoppelt ablaufen</one>, sprich; die Produkte vorhergehender Reaktionen dienen als Substrate nachfolgender Reaktionen.
|
258
|
+
- What is the major input of the <one>glyoxylate pathway</one>? <one>Acetate</one>.
|
259
|
+
- Nenne einen <one>allosterischen Hemmstoff</one> der <two>Pyruvat-Dehydrogenase</two>. A: <one>ATP</one>.
|
260
|
+
- Welches <one>Enzym</one> wandelt bei höheren Tieren, in der Leber, <three>Fructose</three> zu <three>Fructose-1-phosphat</three> um? Die <one>Fructokinase Ketohexokinase</one>.
|
261
|
+
- What is <one>the net pathway</one> of the <two>glyoxylate cycle</two> (Input, Output)? <one>Acetate → Carbohydrates</one>.
|
262
|
+
- Was passiert mit dem <one>Succinat</one>, das in den Glyoxysomen produziert wird? Es <one>wird in die Mitochondrien transportiert</one>.
|
263
|
+
- Output der <one>Aldolase</one>? A: <one>Dihydroxyaceton</one> und <one>Glycerinaldehyd-3-Phosphat</one>. URL: https://en.wikipedia.org/wiki/Aldolase_A
|
264
|
+
- Give another name for <one>anabolic</one>. A: <one>Biosnythesis</one>.
|
265
|
+
- Was genau macht der <one>Pentose Phosphat Pathway</one>? Er konvertiert <one>Glucose-6-Phosphate</one> zu <one>Ribose-5-Phosphate</one>.
|
266
|
+
- Wie können wir die <one>Energieladung</one> einer Zelle angeben? Mittels <one>Quotient</one> - und zwar dem Quotienten von ATP zu AMP (<two>ATP</two> / <two>AMP</two>).
|
267
|
+
- Was ist <one>amphibolisch</one>? Dies sind <two>Stoffwechselwege</two>, die sowohl <one>anabol</one> als auch <one>katabol</one> sind.
|
268
|
+
- Nenne einen wichtigen funktionellen, zellulären Unterschied zwischen dem <one>Citronensäurezyklus</one> und dem <one>Calvin-Zyklus</one>. A: (1) Der <one>Calvin-Zyklus</one> ist <two>anabol</two>. (2) Der <one>Citronensäurezyklus</one> ist <two>katabol</two>.
|
269
|
+
- Nenne ein gemeinsames <one>Zwischenprodukt der Glukoneogenese</one> aus allen Kohlenstoffquellen. A: <one>Phosphoenolpyruvat</one> (<two>PEP</two>).
|
270
|
+
- Die <one>Bestimmung der Lactatkonzentration im Blut</one> erlaubt es uns was genau <two>zu beurteilen</two>? Die <one>Sauerstoffversorgung des Gewebes</one>.
|
271
|
+
- <one>NADPH</one> wird bei der <two>Fettsäuresynthese</two> benötigt. Wozu dient <one>NADPH</one> hier? Als <one>Wasserstoffdonor</one>.
|
272
|
+
- Im Metabolismus: nenne ein Beispiel wo wir eine <one>reziproke Regulation</one> sehen mögen. A: Bei der <one>Glykogensythese</one> und dem <one>Glykogenabbau</one>.
|
273
|
+
- <one>Glykogen</one> wird ausgehend von ... synthetisiert. A: <one>UDP-Glucose</one>. URL: https://en.wikipedia.org/wiki/Uridine_diphosphate_glucose
|
274
|
+
- What do we mean with <one>the metabolic flux</one>? This is the rate of flow of an intermediate through a particular biochemical reaction, based on experimental measurements.
|
275
|
+
- Was ist ein übergeordnetes Ziel von <one>Metabolomics</one>? Die Organismen in ihrer <one>detaillierten, metabolischen Gesamtheit</one> verstehen zu wollen.
|
276
|
+
- Give an example in bacteria for <one>the reduction of NADP</one>. A: The <one>Entner Doudoroff Pathway</one>.
|
277
|
+
- Was meinen wir mit <one>Metabolomics</one>? Vergleichende Studien von Metaboliten eines Organismus.
|
278
|
+
- Was ist die <one>Rekretion</one>? Dies ist die Ablagerung von nicht mehr benötigten Stoffwechselprodukten bei Pflanzen, somit eine <one>Ausscheidung</one>.
|
279
|
+
- Input der <one>Aldolase</one>? A: <one>Fructose-1-6-Bisphosphat</one>. URL: https://en.wikipedia.org/wiki/Aldolase_A
|
280
|
+
- Die <one>Acetat-Kinase</one> liefert was? <mediumseagreen>Essigsäure</mediumseagreen>; eigentlich <one>Acetyl-CoA</one>. URL: https://en.wikipedia.org/wiki/Acetate_kinase
|
281
|
+
- Nenne eine Substanz, die beim <one>Abbau ketogener Aminosäuren</one> entsteht. A: <one>Acetyl-CoA</one>.
|
282
|
+
- Nenne eine prosthetische Gruppe der <one>Glykolat-Oxidase</one>. A: <one>Flavinmononukleotid</one>.
|
283
|
+
- What means <one>poikilotherm</one>? This is an organism whose <one>internal temperature</one> varies considerably.
|
284
|
+
- Within the context of <one>metabolomics</one>, a metabolite typically has what <two>upper size limit</two>? Metabolites are in general molecule <one>less than 1 kDa in size</one>, so <two>1 kDa can be considered as the upper limit</two>, give or take. []
|
285
|
+
- <one>Welche zwei regulären Aminosäuren</one> spielen eine Rolle im <two>Harnstoffzyklus</two>? (1) <one>Arginin</one> (2) <one>Aspartat</one> []
|
286
|
+
- Wieso können wir sagen, das der <one>Fettsäurestoffwechsel</one> (der <two>Lipidstoffwechsel</two>) <three>nicht sehr abwechslungsreich ist</three>? Weil wir hier eigentlich primär nur <one>Acetyl-CoA</one> benötigen. []
|
287
|
+
- <one>Riboflavin</one> ist für <two>welche Enzymklasse</two> besonders wichtig? <one>Riboflavin</one> ist insbesonders für die <two>Oxidoreduktasen</two> wichtig. URL: https://de.wikipedia.org/wiki/Oxidoreduktasen []
|
288
|
+
- Was ist das <one>Schlüsselenym der Glykogenolyse</one>? Die <one>Glykogen-Phosphorylase</one>. URL: https://en.wikipedia.org/wiki/Glycogen_phosphorylase []
|
289
|
+
- Anderes Wort für den <one>Harnstoffzyklus</one>? <one>Ornithin-Zyklus</one>. []
|
290
|
+
- Der <one>Harnstoffzyklus</one> besitzt <two>n ATP-abhängige Schritte</two>? Nur <one>2</one>. []
|
291
|
+
- <one>Which organisms</one> <two>can utilize</two> the <three>shikimate pathway</three> on their own? (1) <one>plants</one>, and (2) <one>microorganisms</one> []
|
292
|
+
- What is the end product of <one>leucine metabolism</one>? <one>Acetyl-CoA</one>. []
|
293
|
+
- Does the <one>homofermentative pathway</one> <two>in lactic acid fermentation</two> <three>yield</three> <four>CO₂</four>? <one>No</one>. []
|
294
|
+
- Was ist mit dem Begriff <one>amphibol</one> gemeint? Wenn ein <one>Stoffwechselweg</one> <two>sowohl eine anabole</two> als auch <two>eine katabole Funktion</two> (in der Zelle) hat. URL: https://de.wikipedia.org/wiki/Stoffwechsel#Stoffwechselwege []
|
295
|
+
- Andere Bezeichnung für <one>Sulfatatmung</one>? <one>Desulfurikation</one>. URL: https://de.wikipedia.org/wiki/Desulfurikation []
|
296
|
+
- Wird <one>der Glykogenspiegel im Muskel</one> über <two>fettreiche Nahrung</two> <three>schnell regeneriert</three>? <one>Nein</one> - der Glykogenspiegel im Muskel wird nur <two>sehr langsam regeneriert</two>. []
|
297
|
+
- What can be considered as the <one>nontoxic transport form of ammonia</one>? <one>Glutamine</one>. URL: https://en.wikipedia.org/wiki/Glutamine []
|
298
|
+
- <one>Welche Substanzgruppe</one> kann die <two>Cholesterin-Synthese</two> <three>hemmen</three>? Die <one>Statine</one> (wie zum Beispiel <two>Lovastatin</two>) können die <three>Cholesterin-Synthase</three> hemmen. URL: https://de.wikipedia.org/wiki/Statin []
|
299
|
+
- <one>Statine</one> <two>können welchen metabolischen Prozess inhibieren</two>? Die <one>menschliche Cholesterinsynthese</one>. URL: https://de.wikipedia.org/wiki/Statin []
|
300
|
+
- Der <one>Entner-Doudoroff-Weg</one> geschieht vor allem in <two>gram-positiven</two> oder in <two>gram-negativen</two> Bakterien? In <one>gram-negativen Bakterien</one>. (<two>Zymomonas mobilis</two> ist <three>gram-negativ</three>, wie <four>E. coli</four>.) []
|
301
|
+
- Nenne die letzten beiden Enzyme des <one>Glyoxylatzyklus</one>, die beide mit dem gleichen Wort anfangen. A: (1) <one>malate synthase</one> (2) <one>malate dehydrogenase</one> []
|
302
|
+
- Das <one>Schlüsselenzym der Cholesterin-Biosynthese</one> ist ... ? Die <one>HMG-CoA-Reduktase</one>. []
|
303
|
+
- Für den <one>Cori-Zyklus</one> ist <two>welche Substanz am wichtigsten</two>? <one>L-Lactat</one>. []
|
304
|
+
- <one>Glutamin</one> <two>geht über welche Substanz</two> <three>in den Citratzyklus ein</three>? <one>Alpha-Ketoglutarate</one>. []
|
305
|
+
- Kann <one>Fructose</one> nach Phosphorylierung und anschließender Metabolisierung in der Glykolyse zur Energiegewinnung beitragen? <one>Ja</one>. []
|
306
|
+
- Durch <one>Transaminierung von Glyoxylat</one> <two>entsteht ... </two>? <one>Glycin</one>. []
|
307
|
+
- Nenne eine <one>physikalische</one>, <two>metabolische Strategie einer Zelle</two>. A: Die <one>Kompartimentierung</one>. URL: https://de.wikipedia.org/wiki/Zellkompartiment []
|
308
|
+
- Is the <one>metabolic flux</one> <two>proportional to the enzyme amount</two>? <one>No</one>. []
|
309
|
+
- <three>Welches Enzym</three> it <one>der geschwindigkeitsbestimmende Schritt des</one> <two>Harnstoffzyklus</two>? Die <one>Carbamoylphosphat-Synthetase I</one>, <two>CPS1</two>. URL: https://en.wikipedia.org/wiki/Carbamoyl_phosphate_synthetase_I []
|
310
|
+
- Die <one>Glucose-Sollkonzentration</one> im Blut beträgt <two>n mmol</two>/<two>L</two>? <one>5 mmol</one>/<one>L</one>. []
|
311
|
+
- Nenne <one>zwei wichtige Funktionen des Citratzyklus</one> <two>für den Menschen</two>. A: <one>Energetisch</one> und <one>biosynthetisch</one>. []
|
312
|
+
- Das <one>C-Atom des Harnstoffes</one>, das verwendet wird im Zuge der Biosynthese von Harnstoff, stammt aus ... ? Aus dem <one>Hydrogencarboat-Ion</one>. []
|
313
|
+
- Können <one>Pilze</one> <two>CO₂</two> <three>fixieren</three>? <one>Nein</one>. []
|
314
|
+
- Im <one>Calvin-Zyklus</one>: <two>wie heißt</two> der <three>CO₂-Akzeptor</three> bei der Kohlenstofffixierung mit vollem Name? <one>Ribulose-1,5-bisphosphat</one>. []
|
315
|
+
- The <one>tendency</one> <two>of a substance to donate or accept electrons</two> is defined by its ... ? <one>reduction potential</one>. []
|
316
|
+
- Die <one>Purinbiosynthese</one> <two>besteht aus n Einzelschritten</two>? <one>10</one>. []
|
317
|
+
- Die <one>Transaldolase</one> <two>überträgt was</two>? <one>C3-Körper</one>. URL: https://de.wikipedia.org/wiki/Transaldolase []
|
318
|
+
- <one>In which pathway</one> may the enzyme <two>aldolase</two> be found? In <one>glycolysis</one>. URL: https://en.wikipedia.org/wiki/Glycolysis []
|
319
|
+
- Beginnt der <one>Harnstoffzyklus</one> im <two>Cytosol</two> oder im <two>Mitochondrien</two>? <one>Im Mitochondrium</one> (genauer: <two>in der mitochondrialen Matrix</two>). []
|
320
|
+
- Kommt es im Zuge des <one>Calvin-Zyklus</one> zur <two>Fixierung von CO₂</two>? <one>Ja</one>. []
|
321
|
+
- Der <one>finale Elektronenakzeptor in der Respiration</one> ist ... ? <one>O₂</one>. []
|
322
|
+
- <one>Wie</one> kann eine <two>ungünstige Reaktion</two> <three>stattfinden</three>? A: Indem sie <one>an eine günstige Reaktion gekoppelt wird</one>. []
|
323
|
+
- Ist <one>UMP</one> <two>wichtig für die Nukleotid-Biosynthese</two>? <one>Ja</one>. []
|
324
|
+
- Ist der <one>Acetyl-CoA Pathway</one> <two>ein Zyklus</two>? <one>Nein</one>. []
|
325
|
+
- Welches <one>Gewebe</one> besitzt einen hohen Bedarf an <two>NADPH</two>? <one>Fettgewebe</one>. URL: https://de.wikipedia.org/wiki/Fettgewebe []
|
326
|
+
- The <one>urea cycle</one> <two>consists of five reactions</two>. <three>How many of these reactions</three> take place in the <four>mitochondrium</four>? <one>Two</one> (2). []
|
327
|
+
- Der <one>Pyruvat-Dehydrogenase Komplex</one> <two>ist extrem wichtig für eine menschliche Zelle</two>. Wenn Pyruvat in das Mitochondrium transportiert wird, was passiert als erstes mit diesem Pyruvat-Molekül, biochemisch betrachtet? Dieses <mediumseagreen>Pyruvat</mediumseagreen> verliert ein <one>CO₂ Molekül</one>. []
|
328
|
+
- In <two>2005</two>, the <one>first metabolomics web database</one>, was developed. <three>What was its name</three>? A: <one>METLIN</one>. URL: https://metlin.scripps.edu/landing_page.php?pgcontent=mainPage []
|
329
|
+
- <one>Was genau</one> wird im <two>Glyoxylatzyklus</two> synthetisiert? <one>Oxalacetat</one>. URL: https://de.wikipedia.org/wiki/Glyoxylatzyklus []
|
330
|
+
- Die <one>Biosynthese der Makrolide</one> <two>erfolgt in aller Regel über ... </two>? Einen <one>Polyketid-Weg</one>. []
|
331
|
+
- What happens if <one>NADP</one> <two>is reduced</two>? Then we will obtain <one>NADPH</one>. URL: https://en.wikipedia.org/wiki/Nicotinamide_adenine_dinucleotide_phosphate []
|
332
|
+
- Das <one>Paradebeispiel</one> eines <two>amphibolen Stoffwechselweges</two> ist ... ? A: Der <one>Citratzyklus</one>. []
|
333
|
+
- Im Stoffwechsel kann eine <one>Ketogruppe</one>, <two>dank NADPH</two>, <three>zu ... überführt werden</three>. A: Zu einer <one>Methylengruppe</one>, <two>-CH₂</two>. URL: https://de.wikipedia.org/wiki/Methylengruppe []
|
334
|
+
- Ist die <one>Purinbiosynthese</one> <two>engmaschig kontrolliert</two>? <one>Ja</one>. []
|
335
|
+
- Die <one>HMG-CoA-Reduktase</one> ist <two>das geschwindigkeitsbestimmende Enzym bei ... </two>? Bei der <one>Cholesterinbiosynthese</one>. URL: https://de.wikipedia.org/wiki/HMG-CoA-Reduktase []
|
336
|
+
- Das <one>Schlüsselenzym der Cholesterinbiosynthese</one> ist ... ? Die <one>HMG-CoA-Reduktase</one>. URL: https://de.wikipedia.org/wiki/HMG-CoA-Reduktase []
|
337
|
+
- Bildet der Harnstoffzyklus <one>ATP</one>? <one>Nein</one>. []
|
338
|
+
- Was meinen wir mit der <one>stoffwechselaktiven Form der Glucose</one>? Damit ist generell <one>Glucose-6-phosphat</one> gemeint. []
|
339
|
+
- Are <one>NADPH</one> and <one>NADH</one> <two>metabolically interchangable</two>? <one>No</one>. []
|
340
|
+
- Provide another name for the <one>catabolic pathways</one>. A: <one>Degradative pathways</one>. URL: https://en.wikipedia.org/wiki/Metabolic_pathway []
|
341
|
+
- <one>Which two amino acids</one> are <two>shuttled</two> in the <three>urea cycle</three>? (1) <one>citrullin</one> (2) <one>ornithin</one> []
|
342
|
+
- <one>In welchen Zellen</one> kommt besonders viel <two>Arginase I</two> vor? In den <one>Hepatozyten</one>. URL: https://de.wikipedia.org/wiki/Arginase_1 []
|
343
|
+
- Andere Bezeichnung für <one>Stoffwechselprodukte</one>? <one>Metabolite</one>. URL: https://en.wikipedia.org/wiki/Metabolite []
|
344
|
+
- In <one>Riboflavin</one> kann man <two>welcher Zuckeralkohol</two> gefunden werden? <one>Ribitol</one>. URL: https://de.wikipedia.org/wiki/Ribit []
|
345
|
+
- Ein <one>Kamel</one> hat <two>zwei Fetthöcker</two>. Man sagt, das diese in Dürrezeiten wichtig sind - aber <three>wieso sollte Fett wichtig sein in Dürreperioden ohne Wasser</three>? Da, <one>wenn Fett verbrennt, extrem viel Wasser frei wird</one>. []
|
346
|
+
- <one>Where</one> do <two>humans</two> metabolize the substance called <three>Fructose</three>? In the <one>liver</one>. []
|
347
|
+
- Besitzt <one>HMG-CoA</one> <two>ein Schwefelatom</two>? <one>Ja</one>. []
|
348
|
+
- Die <one>Glycerinaldehyd-3-P-Dehydrogenase</one> beim Menschen besitzt wieviele Untereinheiten? <one>4</one>; sie ist somit ein <two>Tetramer</two>. URL: https://en.wikipedia.org/wiki/Glyceraldehyde_3-phosphate_dehydrogenase []
|
349
|
+
- Is <one>ethanol fermentation</one> more complicated than <two>lactic acid fermentation</two>? <one>Yes</one>. []
|
350
|
+
- Ist <one>Asparagin</one> (<two>N</two>) <three>eine rein glucogene Aminosäure</three>? <one>Ja</one>. []
|
351
|
+
- <one>Wo</one>, zellulär betrachtet, findet die <two>Synthese von Glykogen</two> statt? Im <one>Cytosol</one>. []
|
352
|
+
- <one>Welcher Stoffwechselkreislauf</one> liefert die meisten <two>NADPH</two> <three>innerhalb einer Zelle</three>? Der <one>Pentosephosphatweg</one>. URL: https://de.wikipedia.org/wiki/Pentosephosphatweg []
|
353
|
+
- Der <one>Harnstoffzyklus</one> steht mit dem <two>Citratzylus</two> <three>über welche Substanz in Verbindung</three>? Über <one>Fumarat</one>, <two>das in Malat konvertiert werden kann</two>, welches wiederum über den Malat-Aspartat-Shuttle in die Mitochondrien eingeschleust wird. []
|
354
|
+
- <one>Die Ausgangsverbindung</one> für die <two>Synthese der Glucose</two> ist ...? <one>Pyruvat</one>. URL: https://de.wikipedia.org/wiki/Pyruvate []
|
355
|
+
- Warum ist der <one>Pentosephosphatweg</one> <two>für anabole Prozesse</two> wichtig? Weil der Pentosephosphatweg <one>Reduktionsäquivalente</one> (<two>NADPH</two>) liefert. []
|
356
|
+
- Die <one>Vorläufersubstanz</one> von <two>ATP</two> und <two>GTP</two> <three>in der Biosynthese ist ...</three>? <one>IMP</one>. URL: https://de.wikipedia.org/wiki/Inosinmonophosphat []
|
357
|
+
- Außer der Glykolyse: nenne einen weiteren, zellulären Stoffwechselweg, bei dem <one>Fructose-6-phosphat</one> gebildet wird. A: Der <one>Pentosephosphatweg</one>. URL: https://de.wikipedia.org/wiki/Pentosephosphatweg []
|
358
|
+
- Name <one>two broad metabolic processes</one> for the <two>catabolism of organic compounds</two>. A: (1) <one>fermentation</one> (2) <one>respiration</one> []
|
359
|
+
- Give another name for <one>living by glycolysis alone</one>. A: <one>Fermentation</one>. URL: https://en.wikipedia.org/wiki/Fermentation []
|
360
|
+
- The <one>Yin</one>/<one>Yang</one> <two>„two-way street“</two> in metabolism is ... ? (1) <one>anabolism</one> (2) <one>catabolism</one> []
|
361
|
+
- <one>Carbamoyl phosphate</one> <two>introduces what cycle</two>? The <one>urea cycle</one>. URL: https://en.wikipedia.org/wiki/Urea_cycle []
|
362
|
+
- Nenne <one>eine Substanz</one>, die die <two>Hexokinase</two> <three>allosterisch hemmen kann</three>. A: Ihr Produkt: <one>Glucose-6-phosphat</one>. []
|
363
|
+
- Nenne <one>die funktionellen Gruppen</one> des <two>Citrat</two>. A: (1) <two>3x</two> <one>COOH</one> Gruppen (2) <two>1x</two> <one>OH</one> Gruppe []
|
364
|
+
- Der <one>Hexosemonophosphat-Pool</one> <two>besteht aus welchen drei Substanzen</two>? Nur aus <one>Hexosen</one>, und zwar aus: (1) <two>Glucose-1-Phosphat</two> (2) <two>Glucose-6-Phosphat</two> (3) <two>Fructose-6-Phosphat</two> []
|
365
|
+
- Enzymtyp der <one>Hexokinase</one>? Die <one>Hexokinase</one> ist eine <two>Transferase</two>. URL: https://de.wikipedia.org/wiki/Hexokinase []
|
366
|
+
- In einer menschlichen Zelle dient meistens welches Molekül als <one>Reduktionsmittel</one>? <one>NADPH</one>. URL: https://de.wikipedia.org/wiki/Nicotinamidadenindinukleotidphosphat []
|
367
|
+
- Wenn <one>Glyoxylat</one> <two>transaminiert wird</two>, <three>entsteht ...</three>? <one>Glycin</one>. (Mit anderen Worten, die einfachste Aminosäure.) []
|
368
|
+
- Kann <one>Glucose 6-Phosphat</one> als <two>energiereich</two> erachtet werden? <one>Nein</one>. []
|
369
|
+
- <one>Cytochrome oxidase</one> <two>ultimately yields which molecule</two>? <one>Water</one>. URL: https://i.imgur.com/0k6ZJU4.png []
|
370
|
+
- The <one>human metabolome</one> is <two>the set of all ... </two>? <one>all Metabolites in a human</one>. []
|
371
|
+
- Was ist das <one>Coenzym</one> aller <two>Transaminasen</two>? <one>Pyridoxalphosphat</one>. URL: https://de.wikipedia.org/wiki/Pyridoxalphosphat []
|
372
|
+
- Der <one>Glucose-Alanin Zyklus</one> <two>ähnelt welchem anderen Zyklus</two>? Dem <one>Cori-Zyklus</one>. URL: https://de.wikipedia.org/wiki/Cori-Zyklus []
|
373
|
+
- Das Molekül <one>Citrat</one> besitzt <two>wieviele Carboxygruppen</two>? <one>3</one>. URL: https://de.wikipedia.org/wiki/Citrate []
|
374
|
+
- Name <one>an important role</one> of the <two>smooth ER</two> in metabolism. A: The <one>smooth ER</one> participates in <two>the synthesis of lipids</two>. []
|
375
|
+
- <one>Acetogenesis</one> is <two>anaerobic</two> or <two>aerobic</two>? <one>Acetogenesis</one> is <two>strictly anaerobic</two>. URL: https://en.wikipedia.org/wiki/Acetogenesis []
|
376
|
+
- <one>Angenommen der Glucosespeicher im menschlichen Körper ist aufgebraucht</one>. Worauf steigt der Körper um, vor allem im <two>Herz</two>? Auf <one>Ketonkörper</one>. URL: https://de.wikipedia.org/wiki/Ketok%C3%B6rper []
|
377
|
+
- <one>Fumarat</one> und <one>Malat</one> <two>tragen symmetrische Endgruppen</two>, <three>und zwar ... </three>? Je <one>2x COOH Gruppen</one>. []
|
378
|
+
- Die Abbauwege der rein ketogenen Aminosäuren <one>Lysin</one> und <one>Leucin</one> <two>konvergieren bei ... </two>? Dem <two>C₂-Körper</two> <one>Acetyl-CoA</one>. []
|
379
|
+
- <one>In welchem Zyklus</one> ist die <two>Alanin-Aminotransferase</two> wichtig? Im <one>Glucose-Alanin-Zyklus</one> - auch <two>Cahill cycle</two> genannt. URL: https://en.wikipedia.org/wiki/Cahill_cycle []
|
380
|
+
- Produziert der Enzymkomplex <one>Pyruvate Dehydrogenase</one> <two>NADH</two>? <one>Ja</one>. []
|
381
|
+
- <one>Where</one> does <two>Beta-Oxidation</two> occur? <two>Beta-Oxidation</two> occurs in the <one>mitochondria</one>. []
|
382
|
+
- Der <one>Tricarbonsäure-Zyklus</one> emittiert pro Durchlauf wieviele <two>CO₂</two> Moleküle? <one>2</one>. []
|
383
|
+
- <one>Über welche Aminosäure</one> ist <two>Biotin</two> mit der <three>Pyruvat Carboxylase</three> verknüpft? <one>Lysin</one>. []
|
384
|
+
- If a cell has a need to <one>break down fatty acid molecules</one>, <two>what process will it use</two>? <one>Beta-oxidation</one>. URL: https://en.wikipedia.org/wiki/Beta_oxidation []
|
385
|
+
- Die <one>zelluläre ATP-Konzentration</one> <two>in einer typischen, menschlichen Zelle</two> <three>beträgt ... </three>? Etwa <one>3-4 mM</one> (<two>mmol</two>/<two>L</two>). []
|
386
|
+
- Der <one>Calvin-Zyklus</one> <two>verbraucht</two> pro synthetisierter <three>Hexose</three> wieviel <four>ATP</four>? <one>18 ATP-Moleküle</one>. URL: https://de.wikipedia.org/wiki/Calvin-Zyklus#Die_Einzelschritte_des_Zyklus []
|
387
|
+
- <one>Propionic acid</one> <two>is what kind of acid</two>? It is <one>a naturally occurring carboxylic acid</one>. URL: https://en.wikipedia.org/wiki/Propionic_acid []
|
388
|
+
- Name <one>a metabolic pathway</one> that <two>can generate reducing power</two> in the form of <three>NADPH</three>. A: The <one>pentose phosphate pathway</one>. URL: https://en.wikipedia.org/wiki/Pentose_phosphate_pathway []
|
389
|
+
- Der <one>Glyoxylatzyklus</one> <two>umfasst wieviele Enzyme</two>, <three>in Summe</three>? <one>5</one>. URL: https://de.wikipedia.org/wiki/Glyoxylatzyklus []
|
390
|
+
- Vergleiche die <one>Energieausbeute</one> in Form von ATP im <two>Entner-Doudoroff-Weg</two> mit dem <two>Embden-Meyerhof-Weg</two>. A: (1) Im <one>Entner-Doudoroff-Weg</one> erhalten wir nur <two>1 ATP pro Glucose</two>. (2) Im <one>Embden-Meyerhof-Weg</one> erhalten wir hingegen <two>2 ATP pro Glukose</two>. []
|
391
|
+
- Ist <one>3-Phosphoglycerat</one> <two>eine Substanz des Calvin-Zyklus</two>? <one>Ja</one> - sie <two>entsteht sofort nachdem CO₂ fixiert wurde</two>. []
|
392
|
+
- The <one>major means for generating pentose sugars</one>, <two>for use in biosynthesis in a cell</two>, is via ... ? Via the <one>pentose phosphate pathway</one>. URL: https://en.wikipedia.org/wiki/Pentose_phosphate_pathway []
|
393
|
+
- Beim Anabolismus: <one>welches Molekül</one> fungiert meistens als <two>Reduktionsmittel</two>? <one>NADPH</one>. URL: https://de.wikipedia.org/wiki/Nicotinamidadenindinukleotidphosphat []
|
394
|
+
- Nenne einen <one>Stoffwechselweg</one>, bei dem das <two>Reduktionsmittel NADPH</two> synthetisiert wird. A: Der <one>Pentosephosphatweg</one>. []
|
395
|
+
- Nenne ein <one>Nebenprodukt kataboler Reaktionen</one> im menschlichen Körper. A: <one>Wärme</one>. []
|
396
|
+
- <one>Alcoholic fermentation</one>, such as in yeast, <two>converts</two> <three>pyruvate</three> to ... and ... ? A: (1) <one>ethanol</one> (2) <one>CO₂</one> []
|
397
|
+
- Der Mensch verwendet etwa <one>n verschiedene Metabolite</one>? <one>2500</one>. []
|
398
|
+
- <one>Welches Metall</one> wird von der <two>Cytochrom c-Oxidase</two> benötigt? <one>Kupfer</one>. []
|
399
|
+
- Wird <one>die Carboxylierung von Acetyl-CoA</one> von einem <two>biotinhaltigem Enzym</two> katalysiert? <one>Ja</one>. []
|
400
|
+
- Name <one>two typical intermediates</one> in the pathway for the biosynthesis of <two>arginine</two>. A: (1) <one>ornithine</one> (2) <one>citrulline</one> []
|
401
|
+
- Wie werden die <one>Zwischenprodukte des Stoffwechsels</one> genannt? <one>Metabolite</one>. []
|
402
|
+
- <one>Welche Aminosäure</one> <two>hat einen stark katalytischen Effekt auf den Harnstoffzyklus</two>? <one>Ornithin</one>. []
|
403
|
+
- Warum der Name <one>Glyoxylatzyklus</one>? Weil <one>Glyoxylat</one> <two>ein wichtiges Zwischenprodukt ist</two>. URL: https://de.wikipedia.org/wiki/Glyoxylatzyklus []
|
404
|
+
- <one>Welche Substanz</one> ist das <two>Startmolekül</two> bei der <three>Glykogensynthese</three>? <one>Glucose-6-Phosphat</one>. []
|
405
|
+
- <one>Während körperlicher Aktivitäten</one> <two>stammt der Großteil der für die ATP-Synthese notwendigen Glucose</two> <three>aus ... </three>? Dem <one>Glykogen</one>. URL: https://de.wikipedia.org/wiki/Glykogen []
|
406
|
+
- <one>Harnstoffzyklus</one> versus <one>Citratzyklus</one>: <two>welcher dieser beiden Zyklen wurde zuerst entdeckt</two>? Der <one>Harnstoffzyklus</one>. URL: https://de.wikipedia.org/wiki/Harnstoffzyklus []
|
407
|
+
- The metabolic rate of an average, adult human is comparable to ... <one>which inanimate object known in reallife</one>? A <one>light bulb</one>, e. g. <two>100 W</two>. []
|
408
|
+
- The <one>metabolic burden of protein production</one> <two>was first described in which species</two>? In <one>E. coli</one>. []
|
409
|
+
- Hat <one>eine Zelle</one> normalerweise <two>mehr ATP</two> oder <two>mehr ADP</two>? <one>Viel mehr ATP</one>; es existiert somit ein großer molarer Überschuss an ATP in einer Zelle. []
|
410
|
+
- <one>NADPH</one> wird oft benutzt um <two>eine Ketogruppe</two> in eine ... zu konvertieren. A: In eine <one>Methylengruppe</one>. []
|
411
|
+
- <one>Succinyl-CoA</one> <two>besitzt wieviele C-Atome</two>? <one>4</one>. URL: https://en.wikipedia.org/wiki/Succinyl-CoA []
|
412
|
+
- <one>Wo</one> innerhalb einer eukaryoten Zelle findet die Reaktion der <two>Carbamoyl-Synthetase</two> statt? <one>Carbamoylphosphat-Synthetase I</one> (<one>CPS1</one>) ist das Enzym, das die Addition von Ammoniak, Kohlenstoffdioxid und ATP zu Carbamoylphosphat katalysiert. Diese Reaktion findet <two>in den Mitochondrien der Wirbeltiere</two> statt. []
|
413
|
+
- Nenne <one>ein Beispiel für</one> <two>Energieerzeugung ohne Sauerstoff</two>. A: Die klassische <one>Glykolyse</one>. URL: https://de.wikipedia.org/wiki/Glykolyse []
|
414
|
+
- In der Biochemie, bei Anabolismus und Katabolismus: gib ein anderes Wort für <one>irreversible Schritte</one> in einem biochemischen Zyklus? <one>Ventilreaktionen</one>. []
|
415
|
+
- Die <one>Glykogensynthese</one> <two>benötigt welche Form der Glucose</two>? <one>UDP-Glucose</one>. URL: https://de.wikipedia.org/wiki/UDP-Glucose []
|
416
|
+
- Der <one>Glyoxylat-Zyklus</one> besitzt <two>zwei Enzyme zusätzlich</two>, <three>die im Citratzyklus nicht vorkommen</three>. <four>Welche sind dies</four>? Die (1) <one>Isocitrat-Lyase</one> (2) und die <one>Malat-Synthase</one> []
|
417
|
+
- Über <one>Substratkettenphosphorylierung</one> <two>können welche Substanzen produziert werden</two>? (1) <one>ATP</one> (2) <one>GTP</one> []
|
418
|
+
- <one>Chemiosmosis</one> <two>is used to make ...</two>? <one>ATP</one>. []
|
419
|
+
- <one>Who</one> was <two>the person</two> <three>to have discovered</three> <four>chemosynthesis</four>? <one>Sergei Winogradsky</one>. URL: https://en.wikipedia.org/wiki/Sergei_Winogradsky []
|
420
|
+
- Besitzt <one>Fumarat</one> eine <two>Doppelbindung</two>? <one>Ja</one>. []
|
421
|
+
- <one>Was fehlt</one> bei der <two>heterofermentativen Milchsäuregärung</two>? Das Enzym <one>Aldolase</one>. URL: https://de.wikipedia.org/wiki/Aldolase []
|
422
|
+
- <one>Lichtreaktion</one> versus <one>Dunkelreaktion</one>: <two>welche dieser beiden Reaktionen wird als Calvin-Zyklus bezeichnet</two>? Die <one>Dunkelreaktion</one>. URL: https://de.wikipedia.org/wiki/Calvin-Zyklus []
|
423
|
+
- Wie nennen wir den <one>Austausch</one> <two>von Aminogruppen bei den Aminosäuren</two>? <one>Transaminierung</one>. URL: https://de.wikipedia.org/wiki/Transaminierung []
|
424
|
+
- Bei der <one>Transaldolase</one>: <two>welche Aminosäure</two> <three>ist im aktiven Zentrum eminent wichtig</three>? Ein <one>Cystin</one>rest. []
|
425
|
+
- Kommt der <one>Glyoxylat-Zyklus</one> in <two>tierischen Organismen</two> vor? <three>Nein</three>. []
|
426
|
+
- <one>Who</one> discovered the <two>urea cycle</two> in the year <three>1932</three>? <one>Hans Krebs</one>, <two>who also discovered the citric acid cycle</two>. URL: https://en.wikipedia.org/wiki/Hans_Adolf_Krebs []
|
427
|
+
- Nenne einen <one>zellulären Prozess</one>, bei dem <two>ATP</two> durch <three>Substratkettenphosphorylierung</three> <four>erzeugt wird</four>. A: Eben bei der <one>Gärung</one>. URL: https://de.wikipedia.org/wiki/G%C3%A4rung []
|
428
|
+
- <one>Wie stabil</one> ist das <two>FADH*</two>-Radikal? Erstaunlicherweise ist es <one>relativ stabil</one> für ein Radikal. []
|
429
|
+
- Does <one>ATP</one> <two>inhibit enzymes of cellular respiration</two>? <one>Yes</one>, which makes sense, considering <two>ATP is the most commonly produced substance during cellular respiration</two> (such as via oxidative phosphorylation). []
|
430
|
+
- Unterschied zwischen <one>oxygener Photosynthese</one> und <one>anoxygener Photosynthese</one>? Je nachdem ob während der Photosynthese <two>Sauerstoff</two> (aus Wasser) freigesetzt wird (<one>sauerstoff-bildende Photosynthese</one>) oder eben nicht. []
|
431
|
+
- <two>Which organism group</two> takes up <one>CH₄</one> in order to produce <three>CO₂</three>? The <one>methanotrophs</one>. URL: https://en.wikipedia.org/wiki/Methanotroph []
|
432
|
+
- <one>Can</one> <two>the cell</two> <three>yield</three> <four>Glucose</four> from <four>Succinate</four>? <one>Yes</one>. []
|
433
|
+
- Die <one>Transketolase</one> <two>überträgt was</two>? <one>C2-Körper</one>. URL: https://de.wikipedia.org/wiki/Transketolase []
|
434
|
+
- Can the <one>pentose phosphate pathway</one> <two>operate without oxygen</two>? <one>Yes it can</one>. URL: https://en.wikipedia.org/wiki/Pentose_phosphate_pathway []
|
435
|
+
- The <one>ATP concentration inside of a cell</one> <two>is typically ... (from-to)</two>? <one>1-10mM</one>. URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC1172435/pdf/biochemj00546-0037.pdf []
|
436
|
+
- Which <one>redox coenzyme</one> is generated in the <two>pentose phosphate pathway</two>? <one>NADPH</one>. URL: https://de.wikipedia.org/wiki/Nicotinamidadenindinukleotidphosphat []
|
437
|
+
- Name a redox cofacter that is created during the citric acid cycle. A: <one>FADH₂</one>. []
|
438
|
+
- Das <one>C1-Ende</one> <two>von Glykogen</two> <three>ist woran gekoppelt</three>? An <one>Glykogenin</one>. URL: https://de.wikipedia.org/wiki/Glycogenin []
|
439
|
+
- Das <one>Bindeglied</one> zwischen <two>Katabolismus</two> und <two>Anabolismus</two> ist ... ? Das <one>ATP</one>. []
|
440
|
+
- <one>Reaktionsträge Substrate</one> wie <two>Aromate</two>, benötigen oft eine <three>Abbauhilfe</three> in Form von ... ? <one>Sauerstoff</one>. []
|
441
|
+
- Die <one>heterofermentative Vergärung</one> <two>von Glucose</two> führt bei <three>Lactobacillen</three> zu <four>welchen drei Endprodukten</four>? (1) <one>Laktat</one> (2) <one>CO₂</one> (3) <one>Ethanol</one> []
|
442
|
+
- Das <one>Schlüsselenzym der Glykogensynthese</one> ist ... ? Die <one>Glykogen-Synthase</one>. URL: https://de.wikipedia.org/wiki/Glykogensynthasen []
|
443
|
+
- <one>Welche Person</one> entwickelte das Konzept der <two>Chemolitotrophie</two>? <one>Sergei Winogradsky</one>. URL: https://en.wikipedia.org/wiki/Sergei_Winogradsky []
|
444
|
+
- Can the <one>Carbamoyl phosphate synthetase I</one> <two>bind</two> <three>ATP</three>? <one>Yes</one>. URL: https://en.wikipedia.org/wiki/Carbamoyl_phosphate_synthetase []
|
445
|
+
- <one>Cholesterin</one> <two>entsteht durch multiple Kondensation von ... </two>? <one>Acetyl-CoA</one>. URL: https://de.wikipedia.org/wiki/Cholesterinbiosynthese []
|
446
|
+
- <one>Cholesterin</one> wird aus welchem <two>Baustein</two> <three>synthetisiert</three>? <one>Acetyl-CoA</one>. []
|
447
|
+
- Benötigt der <one>Harnstoffzyklus</one> <two>Transportproteine</two>? <one>Ja</one>. []
|
448
|
+
- <one>Biochemische Reaktionen</one> <two>gehorchen welchen Gesetzen</two>? Den <one>Gesetzen der Thermodynamik</one>. URL: https://de.wikipedia.org/wiki/Thermodynamik []
|
449
|
+
- Können <one>Tiere</one> aus <two>Acetyl-CoA</two> <three>Zucker</three> (netto) synthetisieren? <one>Nein</one>. []
|
450
|
+
- <one>Wieviel Prozent Anteil</one> hat die <two>Carbamoylphosphat-Synthetase I</two> <three>an den Proteinen in den Mitochondrien von Leberzellen</three>? Etwa <one>20%</one>. []
|
451
|
+
- Das <one>zentrale input-Molekül für den Calvin-Zyklus</one> <two>ist ... </two>? <one>CO₂</one>. []
|
452
|
+
- Die <one>Pyruvat-Carboxylase</one> kommt, metabolisch gesehen, in <two>welchem Stoffwechselweg</two> vor? Als Teil der <one>Gluconeogenese</one>. URL: https://de.wikipedia.org/wiki/Pyruvatcarboxylase []
|
453
|
+
- Nenne <one>ein Beispiel</one> für einen <two>sehr wichtigen</two> <three>membrangebundenen Stoffwechselweg</three>. A: Die <one>Photosynthese</one>. URL: https://de.wikipedia.org/wiki/Photosynthese []
|
454
|
+
- <one>Welches Enzym</one> interkonvertiert <two>Citrat</two> zu <two>Isocitrat</two>? Die <one>Aconitase</one>. URL: https://en.wikipedia.org/wiki/Aconitase []
|
455
|
+
- Die <one>Reduktionsäquivalente</one> <two>für die</two> <three>Synthese von Fettsäuren</three> <four>stammen von ... </four>? <one>NADPH</one>. URL: https://en.wikipedia.org/wiki/Nicotinamide_adenine_dinucleotide_phosphate#NADPH []
|
456
|
+
- Do <one>metazoa</one> <two>rely on microbial metabolism</two> <three>in order to survive</three>? <one>Yes</one>. []
|
457
|
+
- Können wir <one>GTP</one> energetisch als <two>ATP-Äquivalent</two> ansehen? <one>Ja</one>. []
|
458
|
+
- Kann der <one>Glyoxylatzyklus</one> <two>anaplerotisch wirken</two>? <one>Ja</one>. URL: https://de.wikipedia.org/wiki/Glyoxylatzyklus []
|
459
|
+
- Ist die <one>Energiebilanz der Glykolyse</one> <two>positiv</two>? <one>Ja</one>. []
|
460
|
+
- Das Molekül <one>Glyoxylat</one> <two>besitzt wieviele C-Atome</two>? <one>2</one>. URL: https://de.wikipedia.org/wiki/Glyoxylat []
|
461
|
+
- <one>Which</one> <two>C-bodies</two> are important in the <three>pentose phosphate pathway</three>? (1) <one>C4</one> (2) <one>C5</one> (3) <one>C6</one> (4) <one>C7</one> []
|
462
|
+
- Can <one>CH₄</one> <two>be produced biologically from</two> <three>acetate</three>? <one>Yes</one>. []
|
463
|
+
- What is the chemical formula of <one>acetate</one>? <one>H₃C-COO</one>⁻ (also <one>CH₃CO₂</one>). URL: https://en.wikipedia.org/wiki/Acetate []
|
464
|
+
- Nenne <one>die drei funktionellen Gruppen des</one> <two>Pyruvats</two>. A: (1) <one>-CH₃</one> (2) <one>-C=O</one> (3) <one>-COO⁻</one>. URL: https://3.bp.blogspot.com/_DZH2cmCoois/RiT_BHt4nhI/AAAAAAAAB00/6kv5rm289zc/s1600-h/pyruvic_acid.jpg []
|
465
|
+
- Andere Bezeichnung für <one>Embden-Meyerhof-Weg</one>? Dies bezeichnet die <one>klassische Gärung</one> - die <two>Glykolyse</two>. []
|
466
|
+
- Der <one>Calvin-Zyklus</one> <two>benötigt n ATP</two> zur Synthese von einem Molekül <three>Fructose-6-Phosphat</three>? <one>18 ATP</one>. []
|
467
|
+
- Englisch für <one>Buttersäure</one>? <one>Butyric acid</one>. URL: https://en.wikipedia.org/wiki/Butyric_acid []
|
468
|
+
- Der <one>Cori-Zyklus</one> findet statt <two>zwischen Muskeln und ... </two>? <one>Leber</one>. []
|
469
|
+
- Can we call <one>NADH</one> a <two>major energy carrier</two>? <one>Yes</one>, <two>most definitely</two>. []
|
470
|
+
- <one>Fructose</one>, das <two>in die Glykolyse geschleust wird</two>, mag aus welchem Zucker stammen? <one>Saccharose</one>. []
|
471
|
+
- <one>Wo</one> <two>innerhalb einer Zelle</two> erfolgt der <three>Fructoseabbau</three>? Der Fructoseabbau erfolgt, in wenigen Schritten, im <one>Cytosol</one>. []
|
472
|
+
- <one>Per cycle</one>, that is <two>per Glucose-6-phosphate</two>, <three>of the pentose phosphate cycle</three>, <four>how many NADPH are synthesized</four>? <one>Two</one> (2) per cycle run. []
|
473
|
+
- <one>NAD⁺</one> <two>wird im Körper</two> auch <three>aus den Abbauprodukten</three> <four>welcher Aminosäure</four> produziert? <one>Tryptophan</one>. []
|
474
|
+
- Der <one>Cori Zyklus</one> passiert <two>zwischen welchen Bereichen im Körper</two>? (1) <one>Skelettmuskel</one> (2) <one>Leber</one> []
|
475
|
+
- What is <one>the most important biochemical reaction on earth</one>? <one>Photosynthesis</one>. URL: https://en.wikipedia.org/wiki/Photosynthesis []
|
476
|
+
- Ist <one>die Reaktion von Pyruvat zu Acetyl-CoA</one> <two>in Zellen</two> durch die <three>Pyruvat-Dehydrogenase</three> reversibel? <one>Nein</one>, nicht wirklich. []
|
477
|
+
- Aller Energiegewinn bei <one>anaeroben Bedingungen</one> <two>entstammt welchem Stoffwechselkreislauf</two>? Der <one>Glykolyse</one>. URL: https://de.wikipedia.org/wiki/Glykolyse []
|
478
|
+
- Wozu existiert der <one>Salvage-Pathway</one>? Freie Purine können zu Nukleotiden aufgebaut werden.
|