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,1008 @@
|
|
1
|
+
# =========================================================================== #
|
2
|
+
# === Biochemie (Basic Biochemistry)
|
3
|
+
#
|
4
|
+
# Einführung in die Biochemie. Biochem tag Biochemie tag. Bchem tag.
|
5
|
+
# Bioche tag. Biochem1 tag. Bemtag. Biochem2 tag. Bem tag.
|
6
|
+
# Bem1 tag.
|
7
|
+
# =========================================================================== #
|
8
|
+
|
9
|
+
- Nenne <one>ein Beispiel</one> für <two>ein biologisches Makromolekül</two>. A: <one>Proteine</one>. []
|
10
|
+
- Die <one>Transaminasen</one> benötigen welchen <two>Coenzym</two>? <one>Transaminasen</one> benötigen als Coenzym <two>Pyridoxal-5-phosphat</two>. URL: https://de.wikipedia.org/wiki/Pyridoxalphosphat []
|
11
|
+
- <one>Ganglioside</one> tragen eine positive oder eine negative Ladung? Eine <one>negative Ladung</one>, <two>aufgrund der Sialinsäurereste</two>. []
|
12
|
+
- Sind <one>Neutralfette</one> <two>Speichersubstanzen</two>? <one>Ja</one>. URL: https://de.wikipedia.org/wiki/Fette []
|
13
|
+
- <one>Wie</one> bindet <two>Myoglobin</two> Sauerstoff? Mit Hilfe seiner <one>prosthetischen Gruppe</one> (<two>Häm</two>).
|
14
|
+
- <one>Troponin</one> besitzt die drei Untereinheiten <two>C</two>, <two>T</two> und <two>I</two>. <three>Wofür stehen diese Buchstaben jeweils</three>? (1) <one>C</one> ... <two>Calcium</two> (2) <one>T</one> ... <two>Tropomyosin</two> (3) <one>I</one> ... <two>Inhibierend</two>
|
15
|
+
- Nenne <one>drei Beispiele</one> für <two>Proteine der coiled-coil Familie</two>. A: (1) <one>Intermediärfilamente</one> (2) <one>Myosin</one> (3) <one>Tropomyosin</one>
|
16
|
+
- Was ist ein <one>Epimer</one>? A: Ein <one>Epimer</one> ist <two>ein Diastomer das sich in nur einem chiralen Zentrum unterscheidet</two>.
|
17
|
+
- <one>Welche Rolle</one> haben jeweils <two>Calmodulin</two>, <two>Parvalbumin</two> und <two>Troponin C</two>? (1) <one>Calmodulin</one>: wichtiger Ca-bindender Regulator in Zellen (2) Parvalbumin: reguliert Muskelkontraktion (3) Troponin C: <two>glatte Muskulatur</two>
|
18
|
+
- Wenn eine Biomembran viele kurzkettige und ungesättigte Fettsäuren besitzt, was wissen wir dann? Diese Membran ist <one>extrem fluid</one>.
|
19
|
+
- In der <one>Natrium-Kalium-Pumpe</one> wird interessanterweise welche Aminosäure phosphoryliert? Ein <one>Aspartat</one>.
|
20
|
+
- Das <one>gefäßerweiternde Hormon</one> <two>Bradykinin</two> <three>besitzt</three>, als Oligopeptid, <three>wieviele Aminosäuren</three>? <one>9</one>. URL: https://de.wikipedia.org/wiki/Bradykinin []
|
21
|
+
- <one>Warum</one> ist <two>ATP</two> für die <three>Aktinmoleküle</three> so wichtig? Da <one>ATP</one> die <two>Polymerisation</two> von Aktin <three>ermöglicht</three>.
|
22
|
+
- <one>Senkt</one> <two>ein niedriger pH-Wert</two> die Affinität von Hämoglobin zu Sauerstoff? <one>Ja</one>. []
|
23
|
+
- <one>Enzyme</one> <two>mit fest gebundenem Metallion als Co-Faktor</two> werden als ... bezeichnet. A: <one>Metalloenzyme</one>. URL: https://de.wikipedia.org/wiki/Cofaktor_(Biochemie) []
|
24
|
+
- Just about <one>the most important pump in animal cells</one> is the ... ? The <one>sodium-potassium pump</one>. []
|
25
|
+
- Die <one>kontraktile Grundeinheit des Muskels</one> ist ... ? das <one>Sarkomer</one>. URL: https://de.wikipedia.org/wiki/Sarkomer []
|
26
|
+
- Das <one>meistsynthetisierte Biomolekül</one> <two>ist ... </two>? <one>Cellulose</one>. URL: https://de.wikipedia.org/wiki/Cellulose []
|
27
|
+
- <one>Andere Bezeichnung</one> für <two>einen niedrigen Blutzucker</two> (im Menschen). A: <one>Hypoglykämie</one>. URL: https://de.wikipedia.org/wiki/Hypoglyk%C3%A4mie []
|
28
|
+
- Ist der <one>GLUT1-Transporter</one> <two>Insulinunabhängig</two>? <one>Ja</one>. []
|
29
|
+
- Nenne ein Beispiel für ein <one>Homopolysaccharid</one>. A: <one>Cellulose</one>. URL: https://de.wikipedia.org/wiki/Cellulose []
|
30
|
+
- <one>Coenzyme Q</one> <two>can be found in which part of a cell</two>? <one>Coenzyme Q</one> <two>is an essential component of</two> <three>the mitochondrial electron transport chain</three>.
|
31
|
+
- In a biochemistry laboratory: <one>why</one> may <two>beta-mercaptoethanol</two> <three>be employed</three>? <one>Beta-mercaptoethanol</one> is used in order to <two>disrupt disulfide bonds</two> - and thus <three>denature a protein</three>.
|
32
|
+
- <one>Urin</one> hat eine gelbe Farbe, bedingt durch die <two>Urochrome</two>. Was sind <one>Urochrome</one>? Dies sind <one>Stoffwechselprodukte</one>, <two>die beim Abbau des roten Blutfarbstoffs Hämoglobin anfallen</two>.
|
33
|
+
- Die <one>Kontraktion einer Muskelzelle</one> <two>wird durch welchen Zyklus beschrieben</two>? Den sogenannten <one>Querbrückenzyklus</one>. <two>Dieser findet statt zwischen den Aktin- und Myosinfilamenten</two>.
|
34
|
+
- Wie wird die <one>Proteinkinase A</one> <two>aktiviert</two>? Die <one>Proteinkinase A</one> wird durch ein <two>Absinken</two> <three>der cAMP-Konzentration</three> <four>aktiviert</four>.
|
35
|
+
- What is the job of the <one>19S particles</one> of the <two>proteasome</two>? The <one>19S particles</one> <two>deubiquitinate</two> the proteins as they are degraded.
|
36
|
+
- Nenne mindestens zwei der drei relevanten <one>Reste</one> bei O,C,A (<two>Ornithin</two>, <two>Citrullin</two>, <two>Arginin</two>). A: (1) <one>O</one>: <two>NH₂</two> (2) <one>C</one>: <two>NH₂-CO-NH</two> (3) <one>A</one>: <two>NH₂-CNH-NH</two>
|
37
|
+
- Bei der <one>Bildung einer Peptidbindung</one> wird auch Wasser freigesetzt. Die zwei H-Atome hierzu stammen aus ... ? dem Aminoterminus der neu zu verknüpfender Aminosäure.
|
38
|
+
- Das <one>Gleichgewicht</one> welcher zweier Substanzen stellt das wichtigste Puffersystem des Bluts dar? (1) <one>Kohlensäure</one> (H2CO3), und (2) <one>Bicarbonat</one> (<two>HCO3⁻</two>)
|
39
|
+
- Spielen <one>Metalloproteasen</one> eine Rolle in der menschlichen Physiologie? <one>Ja</one> - so helfen <two>manche Metalloproteasen</two> bei der <three>Regulation des Blutdrucks</three>.
|
40
|
+
- If <one>a protein</one> <two>is to be destined to transition to the lysosomes</two>, which tag is added? <one>Mannose-6-phosphate</one>.
|
41
|
+
- <one>Hämoglobin</one> besitzt in seinem Zentrum <two>Eisen</two>. Aber <three>wie wird dieses Atom fixiert</three>? Durch <one>vier Stickstoff-Atome</one> (<two>4 N-Atome</two>).
|
42
|
+
- Wie wird <one>Biotin</one> genannt das ein CO₂-Molekül trägt? <one>N-Carboxybiotin</one>.
|
43
|
+
- <one>Cholesterin</one> <two>besitzt eine Acylkette</two>. <three>Nenne eine Eigenschaft dieser Kette</three>. A: Die <one>Acylkette</one> ist <two>flexibel</two>.
|
44
|
+
- <one>β-Alanin</one> ist <two>ein Baustein von ... </two>? <one>Coenzym A</one>.
|
45
|
+
- Give <one>two reasons</one> as to why the name <two>SUMO</two> was chosen, aside from it being an abbreviation. A: (1) Because this protein <one>folds in a way that is similar to Ubiquitin</one>. (2) It is also is attached to its target protein through an <mediumseagreen>isopeptide bond</mediumseagreen>.
|
46
|
+
- Nenne <one>drei Vertreter</one> der Vitamin <two>B6-Familie</two>. A: (1) <one>Pyrixodin</one> (2) <one>Pyridoxal</one> (3) <one>Pyridoxamin</one>
|
47
|
+
- Anderer Begriff für die <one>Mucopolysaccharide</one>. A: <one>Glykosaminoglykane</one> (GAG).
|
48
|
+
- Die <one>Natrium-Kalium-ATPase</one> kann auf der cytoplasmatischen Seite g-... binden. A: <one>g-Strophanthin</one>.
|
49
|
+
- The <one>TRNT1 protein</one> in humans is quite interesting. <two>What can it do</two>? It can <one>modify tRNAs by adding a series of three nucleotides</one>, called <two>a CCA trinucleotide</two>, to the molecule. This modification is essential for the correct amino acid to be attached to each tRNA.
|
50
|
+
- <one>Skelettmuskeln</one> werden auch ... genannt. A: <one>quergestreifte Muskeln</one>.
|
51
|
+
- <one>Where</one> can the <two>Greek key motif</two> be found? In <one>antiparallel beta sheets</one>.
|
52
|
+
- Nenne einen Vertreter der <one>Polyketide</one>. A: <one>Erythromycin</one>. URL: https://de.wikipedia.org/wiki/Erythromycin
|
53
|
+
- Give an example for an <one>iron storage protein</one>. A: <one>Ferritin</one>. URL: https://de.wikipedia.org/wiki/Ferritin
|
54
|
+
- Andere Bezeichnung für <one>aktives Methyl</one>? <one>S-Adenosyl-Methionin</one> (<one>SAM</one>). URL: https://de.wikipedia.org/wiki/S-Adenosylmethionin
|
55
|
+
- Definiere eine <one>Esterbindung</one> ausgehend von den daran beteiligten funktionellen Gruppen. A: Eine Esterbindung ist eine Bindung zwischen einer <one>Hydroxygruppe</one> und einer <one>Carboxygruppe</one> (<two>hydroxyl</two> + <two>oxoacid</two>).
|
56
|
+
- Was ist <one>der entscheidendene Baustein des Cholesterins</one>? <one>Isopentenylpyrophosphat</one> (<two>IPP</two>). URL: https://de.wikipedia.org/wiki/Isopentenylpyrophosphat
|
57
|
+
- Wie muss <one>Thiamin</one> (<two>Vitamin B1</two>) modifiziert werden um zu <one>TPP</one> (<two>Thiaminpyrophosphat</two>) zu werden? Es muss an einem Ende <one>phosphoryliert</one> werden; wird also <two>effektiv schwerer</two>.
|
58
|
+
- Nenne <one>zwei Komplexe</one> <two>in der Biochemie</two>. A: (1) <one>Chlorophyll</one> (2) <one>Hämoglobin</one>
|
59
|
+
- Hauptaufgabe von <one>Glukagon</one> im menschlichen Körper? Dieses <two>Hormon</two> <one>erhöht den Blutzuckerspiegel</one>.
|
60
|
+
- Die <one>Glucose</one> hat wieviel kJ / Mol? <one>1500 kJ</one> / <one>mol</one>.
|
61
|
+
- Was genau ist <one>Inosine</one>? <two>Inosine</two> ist ein <two>Nukleosid</two>, das gebildet wird wenn <three>Hypoxanthine</three> an einen <three>Ribose-Ring</three> angeheftet wird.
|
62
|
+
- Name at the least <one>two species</one> which may contain <two>phycobilins</two>. A: (1) in <one>cyanobacteria</one> (2) in <one>red algae</one>
|
63
|
+
- Which <one>two bond types</one> can we find in the <two>ATP molecule</two>? (1) an <one>ester bond</one> (2) an <one>anhydride bond</one>
|
64
|
+
- Was erzeugt der <one>reduktive Acetyl-CoA-Weg</one>? <one>Acetat</one>. URL: https://de.wikipedia.org/wiki/Reduktiver_Acetyl-CoA-Weg
|
65
|
+
- Name a residue in <one>N-Acetylmuramic acid</one>. A: <one>D-Lactic acid residue</one>.
|
66
|
+
- Was ist mit der <one>Autoprotolyse des Wassers</one> gemeint? Dies bezeichnet das Vorkommen von <one>H₃0⁺</one> + <one>OH⁻</one> in Wasser.
|
67
|
+
- Give another word for the term <one>Rotamer</one>. A: <one>Conformational isomerism</one>. URL: https://en.wikipedia.org/wiki/Conformational_isomerism
|
68
|
+
- Das funktionelle Ende (die Atome) von <one>Phenylisothiocyanat</one> ist ... ? <one>-N=C=S</one> (also jeweils <two>mit Doppelbindung dazwischen</two>) URL: https://de.wikipedia.org/wiki/Phenylisothiocyanat
|
69
|
+
- Vor allem welche Zellen im menschlichen Körper verwenden viele Lipasen? Die <one>Adiopocyten</one>.
|
70
|
+
- Why is <one>the loss of a hydrogen atom</one> considered to be an <two>oxidation</two>? Because <one>an electron has been lost</one>. Hydrogen contains one proton and 1 electron.
|
71
|
+
- Das <one>Sarkomer</one> findet sich an ... ? einer <one>Myofibrille</one>.
|
72
|
+
- <one>Amphiphile Proteine</one> besitzen sowohl <two>polare</two> als auch <two>apolare</two> Aminosäuren. <three>Nenne ein Beispiel für ein amphiphiles Protein</three>. A: Die <one>Apolipoproteine</one>.
|
73
|
+
- Bei einer vollständigen Hydrolyse eines Triacylglycerins entsteht ... ? <one>Drei freie Fettsäure</one> sowie <two>ein Glycerinmolekül</two>.
|
74
|
+
- Bei der <one>Peptidchain eines Proteins</one>: wieso sind die <two>H-H Bindungen</two> <three>notwendig</three>? Sie <one>stabilisieren die Proteinkette</one>.
|
75
|
+
- Liegen <one>lysosomale Enzyme</one> <two>glykolysiert vor</two>? <one>Ja</one>.
|
76
|
+
- <one>Welche Zellen</one> im menschlichen Körper benötigen große Mengen des Reduktionsmittels NADPHs? <one>Rote Blutkörperchen</one>.
|
77
|
+
- Chemisch betrachtet sind <one>Peptide</one> was (nur ein Wort verwenden)? <one>Säureamide</one>. URL: https://de.wikipedia.org/wiki/Carbons%C3%A4ureamide
|
78
|
+
- Die <one>Carboanhydrase</one> nimmt <two>CO₂</two> und <two>Wasser</two> auf, und erzeugt dafür was? <one>HCO3-</one> und <one>H⁺</one>.
|
79
|
+
- Besitzt <one>das Wassermolekül</one> eine tetraedrische Geometrie? <one>Ja</one>.
|
80
|
+
- <one>Warum</one> tritt die Leichenstarre ein? Der Körper kann aufgrund der eingestellten Stoffwechselfunktionen kein ATP (Adenosintriphosphat) mehr regenerieren, das normalerweise der Muskelentspannung dienen könnte.
|
81
|
+
- Die <one>Synthese der HMG-CoA-Reduktase</one> wird auch über SRE reguliert. SRE steht für ... ? <one>steroidhormonregulierte Elemente</one>.
|
82
|
+
- Die <one>Myofibrillen</one> sind umgeben vom ... ? <one>sarkoplasmatischen Reticulum</one> (SR), dem glatten ER der Muskelfasern.
|
83
|
+
- Wo im menschlichen Körper könnte <one>Glykophorin</one> gefunden werden? In der <one>Erythrozytenmembran</one>.
|
84
|
+
- Can <one>CD86</one> be found on <two>B-cells</two>? <one>Yes</one>.
|
85
|
+
- Es gibt sogenannte <one>starke Ionenaustauscher</one>, die <two>bestimmte funktionelle Gruppen besitzen</two>. <three>Nenne zwei dieser Gruppen</three>. A: (1) <one>Sulfonsäure</one> (-R-SO 3⁻) (2) QAE, aka quartenäres Aminoethyl; hat 3x NH2 Gruppen
|
86
|
+
- Was heißt <one>ureotelisch</one>? <two>Überschüssiges NH₄⁺</two> wird in <one>Harnstoff</one> umgewandelt (= Harnstoffbildend).
|
87
|
+
- <one>Cholin</one> <two>besitzt n C Atome</two>? <one>5</one>.
|
88
|
+
- <one>Myoglobin</one> und <one>Hämoglobin</one> haben unterschiedliche Rollen, die sich im Laufe der Evolution herausgebildet haben. Welche sind dies jeweils, mit nur je einem Wort beschrieben? (1) <one>Myoglobin</one>: <two>Sauerstoffspeicherung</two> (2) <one>Hämoglobin</one>: <two>Sauerstofftransport</two>
|
89
|
+
- <one>N-glykosidische Bindungen</one> verbinden ... und die Gamma-Amidgruppe von Asparagin. A: N-Acetylglucosamin.
|
90
|
+
- Was heißt <one>Vasopressin</one> wortwörtlich, <two>was ist Vasopressin</two> und welchen Effekt hat es? A: vas: Gefäss. pressio: Druck. Vasopressin ist ein Peptidhormon, das den Harn konzentriert.
|
91
|
+
- Im Menschen: interagieren Myoglobin und Hämoglobin? Ja. Im Muskelgewebe übernimmt Myoglobin den Sauerstoff vom Hämoglobin und speichert ihn vor Ort, oder stellt ihn für den aeroben Stoffwechsel bereit.
|
92
|
+
- Aus <one>Inosin-monophosphat</one> kann die Zelle welche zwei Grundbausteine synthetisieren? (1) <one>AMP</one> (2) <one>GMP</one>
|
93
|
+
- The <one>Green fluorescent protein</one> (<two>GFP</two>) <three>contains how many amino acids</three>, approximately? <one>238</one>.
|
94
|
+
- <one>Statine</one> sind <two>strukturell mit welcher Substanz verwandt</two>? Mit der <one>Mevalonsäure</one>.
|
95
|
+
- Spielen <one>Ketonkörper</one> <two>beim diabetischen Koma</two> eine wichtige Rolle? <one>Ja</one>.
|
96
|
+
- Als „Bausteine des Lebens“ fungieren welche vier Hauptklassen von Biomolekülen? (1) Kohlenhydrate (2) Nucleinsäuren (3) Proteine (4) Lipide
|
97
|
+
- For the <one>formation of peptide bonds</one> in a given cell, <two>energy is used from ... </two>? <one>GTP hydrolysis</one>.
|
98
|
+
- <one>Glutathion</one> erfüllt eine wichtige Aufgabe bei der Elimination von ... ? <one>Peroxiden</one>.
|
99
|
+
- <one>Hydroxyl-</one> und <one>Carbonylgruppe</one> <two>reagieren zu ... </two>? Zu einem <one>Halbacetal</one>.
|
100
|
+
- Warum der Name <one>Bisphosphat</one>, welches Beispiel mögen wir hierfür in der Zelle geben und <two>wo</two> mögen wir dieses Molekül finden? Die Phosphate sind <two>an unterschiedlichen Stellen im Molekül</two>, zum Beispiel bei der <one>Fructose 1,6-bisphosphat</one>.
|
101
|
+
- Nenne einen Grund warum rote Blutkörperchen große Mengen an Glutathion benötigen. A: Dieses wird als <one>Antioxidans gegen Peroxide</one> benötigt.
|
102
|
+
- Warum benötigen <one>Erythrocyten</one> <two>große Mengen an NADPH</two>? Um <one>Glutathion</one> <two>zu regenerieren</two>.
|
103
|
+
- Benötigt die Reduktion von oxidiertem Glutathion NADPH? <one>Ja</one>.
|
104
|
+
- Der <one>Natriumgradient</one> erlaubt auch den ... ? <one>Glucoseimport</one>.
|
105
|
+
- Was meinen wir mit <one>isobar</one> in der Biochemie? Wenn Aminosäuren die <one>gleiche Masse</one> haben. Beispiel: <two>Leucin</two> und <two>Isoleucin</two>.
|
106
|
+
- Ist GLUT1 ein Uniporter? <one>Ja</one>.
|
107
|
+
- Welche <one>zwei Typen an homologen Proteinen</one> <two>können allgemein unterschieden werden</two>? (1) <one>Orthologe Proteine</one> (2) <one>Paraloge Proteine</one>
|
108
|
+
- Jemand behauptet das <one>Cholesterin</one> <two>flexibel wäre</two>. <three>Wieso mag diese Person recht haben</three>? Da <one>Cholesterin</one> eine <two>unpolare Alkylkette</two> besitzt, die sehr flexibel ist.
|
109
|
+
- Besitzen die <one>Cerebroside</one> mehr als einen Zuckerrest? Nein - sie haben nur einen einzelnen Zuckerrest; meistens Glucose oder Galactose.
|
110
|
+
- Tragen <one>Cerebroside</one> einen Zucker? Ja, und zwar <one>Galactose</one>.
|
111
|
+
- Bei der <one>Kernresonanzspektroskopie</one> (<two>NMR</two>): <three>nenne eine wichtige Voraussetzung hierzu</three>. A: Das <one>Anreichern von Isotopen</one>.
|
112
|
+
- In der <one>Biosynthese</one> von <two>Chorismate</two> zu <two>Anthranilate</two> wirkt welches Enzym? Die <one>Anthranilate synthase</one>. URL: https://en.wikipedia.org/wiki/Anthranilate_synthase
|
113
|
+
- Woraus besteht <one>die katalytische Triade in Chymotrypsin</one>? (1) <one>Ser 195</one> (2) <one>His 57</one> (3) <one>Asp 102</one>
|
114
|
+
- Andere Bezeichnung für <one>zwei Carbonsäuren</one>? <one>Anhydrid</one>.
|
115
|
+
- Nenne <one>zwei Faktoren</one> die die Proteinevolution antreiben. A: (1) Mutation (2) <one>Duplikation</one>
|
116
|
+
- <one>NAD⁺</one> <two>kann was genau aufnehmen</two>? (1) <one>zwei Elektronen</one> (<two>e⁻</two>) (2) <one>ein Proton</one> (<two>H⁺</two>)
|
117
|
+
- Der <one>ABC-Transporter</one> <two>ist ein integrales Protein</two>. <three>Auf welcher Seite hat er seine ATP-binding-cassette</three> Auf der <one>cytoplasmatischen Seite</one>.
|
118
|
+
- Das wohl beste Beispiel eines <one>fibrillären Proteins</one> im Menschen ist ... ? <one>Kollagen</one>.
|
119
|
+
- <one>Tocopherol</one> <two>findet man bei ...</two>? <one>Vitamin-E-Formen</one> (mnemonic: <two>TocophErol</two>). URL: https://en.wikipedia.org/wiki/Tocopherol
|
120
|
+
- <one>Welchen Zweck</one> erfüllt die <two>Phytyl-Seitenkette</two> von Chlorophyll? <one>Verankerung in der Membran</one>.
|
121
|
+
- <one>cAMP</one> hat <two>an welchen C-Atomen</two> den Ring mit Phosphat gebunden? A: <one>C3</one> und <one>C5</one>.
|
122
|
+
- <one>Wirbeltiere</one> besitzen relativ viele verschiedene <two>Kollagentypen</two>. <three>Wie viele, in etwa</three>? <one>28</one>.
|
123
|
+
- <one>Wie misst</one> eine bakterielle Zelle, wie viel Stickstoff sie noch zur Verfügung hat? Die Zelle kann das Gleichgewicht zwischen <one>Glutamin</one> und <one>α-Ketoglutarat</one> registrieren.
|
124
|
+
- Unterschied zwischen <one>Pyruvat</one> und <one>Acetaldeyhd</one>? <one>Pyruvat</one> besitzt <two>eine CO₂ Gruppe mehr</two> als <three>Acetaldehyd</three>.
|
125
|
+
- <one>Phosphopantetheine</one> ist Bestandteil des <two>Acyl Carrier Protein</two>. <three>Wieviele C-Atome besitzt Phosphopantetheine</three>? <one>11</one>.
|
126
|
+
- Are <one>ABC transporters</one> membrane-bound? Yes.
|
127
|
+
- Can we find <one>ABC transporters</one> in fungi? <one>Yes</one>. URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC2752038/
|
128
|
+
- <one>Unterschied</one> zwischen <two>Membrankanälen</two> und <two>Ionenpumpen</two>? Letztere benötigen Energie (== aktiver Transport); Kanäle benötigen hingegen keine Energie.
|
129
|
+
- Bei der <one>Ubiquitinierung</one> im ersten Schritt: <two>womit</two> wird die C-terminale Carboxylgruppe von Ubiquitin verknüpft? Es wird als <one>Thioester</one> mit einer Cys-Seitenkette des ubiqitin-aktivierenden Enzym E1 verknüpft.
|
130
|
+
- The predicted <one>mass of a nucleoseome</one>, <two>with associated DNA and the H1 histone</two>, <three>is n kDa</three>? <one>262 kDa</one>.
|
131
|
+
- What is a <one>degron</one>? A degron is an internal sequence in an amino acid chain that ensures their timely cellular degradation.
|
132
|
+
- Wieso benötigt die <one>Prolyl-Hydroxylase</one> eigentlich <two>Ascorbinsäure</two>? Da dieses Enzym ein <one>Fe²⁺ Ion</one> im Zentrum trägt, dieses mitunter zu <one>Fe3⁺</one> oxidiert wird. Ascorbinsäure wird als <three>regenerierendens Cosubstrat</three> benötigt; Fe 3⁺ wird zu Fe 2⁺ reduziert.
|
133
|
+
- Der <one>muskarinische Acetylcholin-Rezeptor</one> ist <two>ein G-Protein-gekoppelter Rezeptor</two> <three>mit n Untertypen</three>. A: <one>5</one> (<one>fünf</one>).
|
134
|
+
- Nenne <one>je drei Beispiele</one> für <two>Aldosen</two> und <two>Ketosen</two> (und zwar in Reihenfolge: eine Triose, eine Pentose und eine Hexose), also in Summe 6 verschiedene Zucker. A: (1) Glycerinaldehyd versus Dihydroxyaceton (2) Ribose versus Ribulose (3) <one>Glucose</one> versus <one>Fructose</one>
|
135
|
+
- The <one>prostaglandins</one> <two>are derived from ...</two>? <one>Prostaglandins</one> are derived enzymatically from <two>fatty acids</two>.
|
136
|
+
- Die <one>Verteilung der Serumproteinfraktionen</one> lässt sich am besten <two>anhand welcher Regel merken</two>? Anhand der <one>Viererregel</one> - <two>jeweils +4</two>.
|
137
|
+
- <one>Aspartat</one> <two>koordiniert was</two>? <one>Magnesium</one>.
|
138
|
+
- Drei Substanzen sind für den <one>umami-Geschmack</one> verantwortlich. <two>Nenne zwei davon</two>. A: (1) <one>Mononatriumglutamat</one> (2) <one>Dinatriuminosinat</one>
|
139
|
+
- Wie ist in der Biochemie eine <one>Reaktion erster Ordnung</one> definiert? Die ist eine <one>Reaktion</one>, <two>die zu den Konzentrationen der Ausgangsmaterialen direkt proportional ist</two>.
|
140
|
+
- <one>Cytochrom P450</one> ist <two>an der Biosynthese von welchen drei Substanzen beteiligt</two>? <one>PSV</one> ... (1) <two>Prostaglandinen</two> (2) <two>Steroiden</two> (3) <two>Vitamin D3</two>
|
141
|
+
- <one>Biochemischer Vorläufer von</one> <two>Chorismat</two>? <one>Erythrose-4-Phosphat</one>. URL: https://en.wikipedia.org/wiki/Shikimate_pathway
|
142
|
+
- Nenne <one>vier</one> biochemisch sehr wichtige <two>Phänomene des Lebens</two>. A: (1) <one>Metabolismus</one> inklusive Energieumwandlung (2) <one>Wachstum</one> (3) <one>Reproduktion</one> (4) <one>Reizbarkeit</one> und <one>aktive Bewegung</one>
|
143
|
+
- Wenn die <one>HMG-CoA-Reduktase</one> <two>gehemmt wird</two>, welchen Effekt hat dies auf die Zelle? Die <one>HMG-CoA-Reduktase</one> ist das geschwindigkeitsbestimmende Enzym bei der <two>Cholesterolsynthese</two>. <three>Somit wird die Zelle wohl weniger Cholesterin synthetisieren können</three>.
|
144
|
+
- What is <one>the normal role of</one> <two>melanin</two>? <one>Melanin</one> <two>normally protects the DNA of skin cells from the damaging effects of ultraviolet radiation in sunlight</two>.
|
145
|
+
- Name two <one>enzyme types</one> <two>that add oligosaccharides to newly synthesized proteins</two>. A: (1) <one>glycosylases</one> (2) <one>glycosyltransferases</one>
|
146
|
+
- In the enzyme <one>glycogen phosphorylase</one>: <two>which cofactor</two> <three>can be found at each of its catalytic site</three>? <one>Pyridoxal phosphate</one> (<two>PLP</two>).
|
147
|
+
- <one>Annexin V</one> can bind to phosphatidyl... ? <one>phosphatidylserine</one>
|
148
|
+
- <one>Bromcyan</one> (<two>CNBr</two>) spaltet an <three>Methioninresten</three>, aber wo genau? Auf der <one>Carboxylseite</one>.
|
149
|
+
- <one>Wozu</one> benötigt <two>Chymotrypsin</two> <two>die Oxyanionentasche</two>? Zur <one>Stabilisierung des tetraedrischen Zwischenproduktes</one>.
|
150
|
+
- Wie sieht eine <one>Indol-Gruppe</one> aus und <two>wieviele C-Atome</two> finden wir in ihr? Ein <one>6er-Ring</one>, kombiniert mit einem <one>5er-Ring</one> (der eine N-H Gruppe trägt). Insgesamt existieren <two>8 C Atome</two> in einer Indolgruppe. URL: https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/Indole_2D_numbered.svg/240px-Indole_2D_numbered.svg.png
|
151
|
+
- Which <one>two enzymes</one> are unique to the <two>Calvin cycle</two>? (1) ribulose bisphosphate carboxylase-oxygenase (2) <one>phosphoribulokinase</one>
|
152
|
+
- Wie spielen <one>Keto</one>, <one>Imino</one> und <one>Enol-Form</one> zusammen? Die <one>Keto-Form</one> ist die normale Form. Imino-Form gibt es für A und C, Enol-Form für G und T.
|
153
|
+
- <one>Das mitochondriale Porin</one> wird auch als <two>VDAC</two> bezeichnet. <three>Wofür steht diese Abkürzung</three>? <one>Voltage dependent anion channel</one>.
|
154
|
+
- Beschreibe den <one>Lactatdehydrogenase Zyklus</one> mit seinen sechs Punkten. A: (1) H195 liegt im LDH Enzym protoniert vor. (2) NADH wird gebunden (an Schleife 98-111) (3) Pyruvat wird gebunden. Hierbei muss man bedenken das die Orientierung der Substrate wichtig ist. Die Konformation der Schleife ändert sich. (3) Hydridtransfer bei der eigentlich Redoxreaktion hier, Stabilisierung durch R109. Zugleich erfolgt auch ein Protonentransfer. (6) NAD⁺ dissoziiert ab.
|
155
|
+
- In der Biochemie: was ist der Unterschied zwischen <one>K</one> und <one>k</one>? (1) <two>K</two> ist für <one>Gleichgewichtskonstanten</one> (<three>equilibrium constant</three>) (2) <two>k</two> hingegen ist für <one>Geschwindigkeitskonstanten</one> (<three>rate constant</three>)
|
156
|
+
- <one>Caffeine</one> <two>in the human body</two> <three>is typically broken down into ... </three>? <one>Xanthine</one>.
|
157
|
+
- <one>RING-Domänen</one> <two>in Proteinen</two> <three>sind zuständig für ... </three>? <one>Protein-Protein Kontakte</one>.
|
158
|
+
- <two>Where</two> within or on a given <one>enzyme</one> could <three>Selenocysteine</three> be found? At the <one>active center</one> <two>of specific enzymes</two>.
|
159
|
+
- Nenne <one>einen Vertreter</one> eines <two>typischen Carotinoids</two>. A: <one>Beta-Carotin</one>.
|
160
|
+
- Is <one>uric acid</one> <two>water soluble</two>? <one>No</one> - <two>uric acid is a waste product that can be found in birds</two>.
|
161
|
+
- Was ist <one>Puromycin</one>? <one>Puromycin</one> ist ein <two>Nukleosid-Antibiotikum</two>, das <three>aus</three> den <three>Streptomyceten</three> isoliert wurde.
|
162
|
+
- <one>Thyreostatika</one> <two>bewirken was</two> <three>im menschlichen Körper</three>? <one>Thyreostatika</one> <two>hemmen die</two> <three>Biosynthese der Schilddrüsenhormone</three>.
|
163
|
+
- Nenne die <one>5 Koenzyme des Pyruvat-Dehydrogenase Komplexes</one>. A: (1) <one>TPP</one> (2) <one>Lipoat</one> (3) <one>FAD</one> (4) <one>NAD</one> (5) <one>CoA</one>
|
164
|
+
- Wenn <one>cAMP</one> <two>abgebaut wird</two>, <two>entsteht ...</two>? <one>5'-AMP</one>. URL: https://en.wikipedia.org/wiki/Adenosine_monophosphate
|
165
|
+
- Das wichtigste Puffersystem des Bluts bildet ... ? das Säure-Basen-Paar <one>Kohlensäure</one> und <one>Bicarbonat</one>.
|
166
|
+
- Biochemisch-struktureller Unterschied zwischen <one>Adrenalin</one> und <one>Noradrenalin</one>? <one>Adrenalin</one> hat eine <two>zusätzliche CH₃-Gruppe</two>; ist somit schwerer als <three>Noradrenalin</three>.
|
167
|
+
- <one>Welche Atome</one> sind an einem <two>Thioester</two> beteiligt? 3 verschiedene, und zwar: <one>-S-C=O-</one>
|
168
|
+
- Nenne zwei wichtige Hauptabbauprodukte der Nukleotide. A: (1) Harnstoff (2) Harnsäure
|
169
|
+
- Nenne einen <one>irreversibler Hemmer der Thymidylate-Synthase</one>. A: <one>Fluoruracil</one> (<two>Fluor-uracil</two>) - genauer <three>5-fluorouracil</three> (<two>5-FU</two>). URL: https://en.wikipedia.org/wiki/Thymidylate_synthase#Using_TS_as_a_drug_target
|
170
|
+
- Nenne ein <one>biogenes Amin</one> das mit dem Buchstaben <two>C</two> beginnt. A: <one>Catecholamin</one>. URL: https://en.wikipedia.org/wiki/Catecholamine
|
171
|
+
- <one>Wann</one> verläuft eine biochemische Reaktion <two>freiwillig</two>? Wenn sie zu einem <one>Zustand niedrigerer freier Energie</one> führt.
|
172
|
+
- <one>Glutamate</one> is <two>the precursor of which 3 substances</two>? <one>OPA</one> (1) <two>Ornithine</two> (2) <two>Proline</two> (3) <two>Arginine</two>
|
173
|
+
- Verwende eine andere Bezeichnung für einen <one>irreversiblen Inhibitor</one>. A: <one>Suizid-Substrat</one>.
|
174
|
+
- <one>Warum</one> ist es in der Biochemie wichtig das es <two>Elektronen</two> gibt? <two>Elektronen tragen Energie</two>, die für <one>endergone Reaktionen</one> verwendet werden kann.
|
175
|
+
- <one>Welche Reaktion</one> führt die <two>Adenylatzyklase</two> durch? Die <one>membrangebundene Adenylatzyklase</one> synthetisiert <two>aus ATP</two> <three>cAMP</three>.
|
176
|
+
- <one>EDTA</one> ist ein <two>Protease-Inhibitor</two>. <three>Gegen welche Protease wirkt EDTA</three>? Gegen <one>Metalloproteasen</one>.
|
177
|
+
- Nenne <one>zwei konkrete Beispiele</one> in der Strukturbiologie für <two>coiled-coil</two> Proteine. A: (1) die Oncoproteine c-fos und <one>jun</one> (2) das Muskelprotein <one>Tropomyosin</one>
|
178
|
+
- Name <one>the five cofactors</one> of the <two>pyruvate dehydrogenase complex</two>. A: (1) <one>TPP</one> (2) <one>FAD</one> (3) <one>Lipoate</one> (4) <one>CoA</one> (5) <one>NAD</one>
|
179
|
+
- Es gibt verschiedene Isoformen der <one>Glucosetransportproteine</one>, wie zum Beispiel <two>GLUT1</two>, <two>GLUT2</two> und so weiter. <three>Welches charakteristische Strukturmotif haben diese Transporter</three>? <one>Zwölf Transmembransegmenten</one> aus <two>alpha-Helices</two>.
|
180
|
+
- <one>Wo</one> spaltet <two>Hydroxylamine</two>? An <one>Asparagin-Glycin</one> Stellen. URL: https://en.wikipedia.org/wiki/Hydroxylamine#Uses
|
181
|
+
- Die <one>Desaminierung von Adenosin</one> <two>führt zur Entstehung welcher Substanz</two>? <one>Inosin</one>.
|
182
|
+
- Kupfer ist Bestandteil des Häm... ? <one>Hämocyanin</one>.
|
183
|
+
- <one>Apolipoprotein B</one> (<two>ApoB</two>) <three>is a key constituent of ... </three>? <one>circulating lipid transport vesicle</one>.
|
184
|
+
- Nenne <one>zwei</one> <two>Vorläufer der Terpenoide</two>. A: (1) <one>IPP</one>: <two>Isopentenylpyrophosphat</two> (2) <one>DMAPP</one>: <two>Dimethylallylpyrophosphat</two>
|
185
|
+
- Die <one>Porphyrine</one> <two>bestehen aus welchen Grundbausteinen</two>? (1) <one>Glycin</one> (2) <one>Succinyl-CoA</one>
|
186
|
+
- Welche <one>drei Phasen</one> <two>umfasst die Zellatmung</two>? A: (1) <one>Phase 1</one>: Bildung von Acetyl-CoA (2) <one>Phase 2</one>: Oxidation von Acetyl-CoA (3) <one>Phase 3</one>: Elektronentransfer mit oxidativer Phosphorylierung
|
187
|
+
- <one>Welche Ladung</one> hat ein (einzelnes) <two>Phospholipid</two> und warum? A: <one>Negativ geladen</one>, <two>aufgrund der Phosphatgruppe am 3. Schwanz</two>.
|
188
|
+
- Ist <one>Coenzym A</one> <two>der wichtigste Überträger von Alkylgruppen</two>? <one>Nein</one>.
|
189
|
+
- What are <one>abzymes</one>? <one>Abzymes</one> are <two>monoclonal antibodies</two> <three>that</three> <four>can catalyze reactions</four>.
|
190
|
+
- Nenne <one>drei Beispiele</one> für Moleküle die im Zuge der <two>Glukoneogenese</two> herangezogen werden können. A: (1) <one>Lactat</one> (2) <one>Glycerol</one> (3) <one>glukogene Aminosäuren</one>
|
191
|
+
- <one>Welche zelluläre Rolle</one> erfüllt <two>S-Adenosyl Methionine</two> (<three>SAM</three>)? <two>SAM</two> ist involviert beim <one>Transfer von Methylgruppen</one>.
|
192
|
+
- What do the <one>serine proteases</one> catalyze in general? <one>Serine proteases</one> <two>catalyze the hydrolysis of peptide bonds</two>. URL: https://en.wikipedia.org/wiki/Serine_protease
|
193
|
+
- What is meant with the term <one>amphiprotic properties</one>? This is the case <one>when a molecule can accept or donate protons</one>.
|
194
|
+
- Wie unterscheiden sich <one>antiparallele</one> und <one>parallele</one> <two>Beta-Stränge</two> wenn sie durch eine Haarnadelschleife verbunden sind? Parallele Stränge benötigen eine <one>Überkreuzstruktur</one>, antiparallele nicht.
|
195
|
+
- <one>Methionin</one> <two>sorgt für die Bildung von ... </two>? <one>Adrenalin</one>.
|
196
|
+
- Verhältnis zwischen der <one>Michaelis-Menten Gleichung</one> und dem <one>Lineweaver-Burk Diagramm</one>? Das <one>Lineweaver-Burk Diagramm</one> ist <two>der Kehrwert der</two> <three>Michaelis-Menten Gleichung</three>. URL: https://www.spektrum.de/lexikon/biologie/lineweaver-burk-diagramm/39459
|
197
|
+
- Der <one>Vorläufer</one> von <two>Steroiden</two>, <two>Carotinoiden</two> und den <two>Gibberrellinen</two> ist ... ? <one>Isoprenoid</one>. URL: https://www.britannica.com/science/isoprenoid
|
198
|
+
- <one>Warum</one> ist <two>die beständige Einnahme von Schlaftabletten</two> ineffektiv? Weil die Schlaftablette durch <one>Cytochrom P450</one> entgiftet wird.
|
199
|
+
- <one>Pyrimidine</one> <two>können im Körper nicht maximal oxidiert werden</two>. Nenne einen physiologischen Grund dafür. A: Auf diesem Weg würden <one>Barbiturate</one> entstehen.
|
200
|
+
- <one>Welche Rolle</one> spielt Hydroxylsin in Kollagenfasern? <one>Hydroxylysin</one> vernetzt die Prokollagen-Fasern untereinander und verleiht ihnen dadurch Stabilität.
|
201
|
+
- Nenne <one>drei</one> <two>Aminoglykosid-Antibiotika</two>. A: (1) <one>Gentamycin</one> (2) <one>Neomycin</one> (3) <one>Paromomycin</one>
|
202
|
+
- <one>How many different forms</one> do <two>electron carriers</two> have? <one>Two</one> - the <two>oxidized form</two> and the <two>reduced form</two>.
|
203
|
+
- Nenne die <one>drei funktionellen Gruppen</one> bei <two>Carbamoylphosphat</two>. A: (1) <one>-C=O</one> (2) <one>-NH₂</one> (3) <one>-OPO₃</one>
|
204
|
+
- <one>Wann</one> wurde <two>Morphin</two> <three>erstmals isoliert</three>? Im Jahre <one>1805</one>. URL: https://en.wikipedia.org/wiki/Morphine
|
205
|
+
- <one>Aquaporine</one> lassen <two>pro Sekunde</two> <three>wieviele Wassermoleküle hinein</three>? Ca. <one>10⁹</one> Wassermoleküle (<two>1.000.000.000</two>).
|
206
|
+
- <one>Blutgruppe A</one> und <one>Blutgruppe B</one> kodieren für Enzyme, die einen Kofaktor verwenden. Nennen diesen Kofaktor für A und B. A: (1) A verwendet den Kofaktor <two>UDP-N-Acetylgalaktose</two> (2) <one>B</one> verwendet den Kofaktor <two>UDP-Galaktose</two>
|
207
|
+
- Name <one>the five stages</one> of <two>natural protein expression</two> <three>in E. coli</three>. A: (1) <one>activation of amino acids</one> (2) <one>Initiation</one> (3) Elongation (4) Termination and Release (5) Folding and posttranslational processing
|
208
|
+
- <one>Welchen Effekt</one> hat die <two>Adenylierung</two> des Enzyms <three>Glutamine Synthetase</three>? Dieses Enzym wird dadurch <one>katalytisch inaktiv</one>.
|
209
|
+
- <one>Wo</one> mögen wir <two>Buttersäure</two> in einem natürlichen Umfeld sehen? In <one>Schweiß</one>.
|
210
|
+
- Is <one>ATP</one> <two>a good fuel storage molecule</two>? <one>No</one> it is not.
|
211
|
+
- In <one>peptide bond formation</one>: <two>who</two> is the aggressor? The <one>carboxy terminus</one> <two>of the incoming amino acid</two>.
|
212
|
+
- Nenne <one>ein Beispiel</one> für die Tertiärstruktur von Proteinen. A: <one>Disulfidbrücken</one>.
|
213
|
+
- In der Biochemie: wie ist <one>Kcat</one> definiert? <one>Vmax</one> / <one>[E]</one> in 1/s.
|
214
|
+
- <one>Lysozym</one> hat eine katalytische <two>Klammer</two> im aktiven Zentrum, um die glycosidischen Bindungen seines Substrates (Peptidoglykanschicht bakterieller Zellwände) lösen zu können. Welche <three>zwei Aminosäuren</three> sind im katalytischen Zentrum befindlich? (1) <one>Apartat</one> (D) (2) <one>Glutamat</one> (E)
|
215
|
+
- Welche <one>fünf biochemische Reaktionstypen</one> existieren? A: (1) Gruppenübertragungen (Aktivierung) (2) Kondensationen (Polymerisierung) (3) Oxidations -Reduktionsreaktionen (4) Spaltung und Bildung von C-C (Substitution) (5) <one>Interne Umlagerungen</one>
|
216
|
+
- The <one>AMPK kinase</one> - the abbreviation <two>AMPK is short for ... </two>? <one>5' AMP-activated protein kinase</one>. URL: https://en.wikipedia.org/wiki/AMP-activated_protein_kinase
|
217
|
+
- Nenne <one>Unterschiede</one> und <one>Gemeinsamkeiten</one> von <two>Thymin</two>, <two>Cytosin</two> und <two>Uracil</two>. A: Alle besitzen mindestens eine C=O Gruppe. Thymin hat eine Methylgruppe. Cytosin hat eine NH2 Gruppe, Uracil und Thymin an dieser Stelle eine weitere C=O Gruppe.
|
218
|
+
- Nenne ein Beispiel für <one>positive Allosterie</one>. A: <one>Hämoglobin</one>: <two>die Bindung eines Liganden erleichtert die Bindung weiterer Liganden</two.
|
219
|
+
- <one>Welche Funktion</one> hat <two>Aldosteron</two>? A: <one>Aldosteron</one> steuert die Menge an <two>Natrium-Ionen</two>, die von der Niere <three>ausgeschieden</three> werden. URL: https://de.wikipedia.org/wiki/Aldosteron
|
220
|
+
- <one>Welche Enzyme</one> katalysieren die <two>cis-trans Konformationsänderung von Prolin</two> <three>in Peptidbindungen</three>? Die <one>Prolyl-Peptidyl cis</one>/<one>trans Isomerasen</one>.
|
221
|
+
- <one>Biotin</one> <two>besteht aus welchen zwei Komponenten</two>? (1) <one>Harnstoff</one> (2) <one>Thiophanring</one>
|
222
|
+
- <one>Welches Enzym</one> ist an der Umwandlung von <two>Harnstoff</two> in <two>Ammonium</two> beteiligt? Die <one>Urease</one>. URL: https://en.wikipedia.org/wiki/Urease
|
223
|
+
- Ist der <one>Schwefel</one> <two>bei Acetyl-CoA</two> wichtig? <one>Ja</one> - er erlaubt es das die Acetyl-Gruppe relativ leicht übertragen werden kann.
|
224
|
+
- <one>How</one> are the molecules called that help other molecules cross a cell membrane? These are the <one>transport proteins</one>.
|
225
|
+
- Was geschieht bei der <one>Fumaratatmung</one>? <one>Succinat</one> wird <two>zu Fumarat konvertiert</two>. (Merkhilfe: Fumarat wird <three>ausgeatmet</three>)
|
226
|
+
- Der <one>pKS Wert</one> <two>hängt wovon ab</two> (Slogan)? Von <mediumseagreen>pKS-TIM</mediumseagreen>: <one>Temperatur</one>, <one>Ionenstärke</one> und <one>Mikromilieuumgebung</one>.
|
227
|
+
- Das <one>Flaggschiff</one> <two>der Membranpumpen</two> ist ... ? Die <one>Na⁺-K⁺-ATPase</one>.
|
228
|
+
- Nenne die <one>drei Aktivitäten der reversen Transkriptase</one>. A: (1) Polymerase-Aktivität (2) Abbau von mRNA in einem DNA-RNA Hybrid (3) Synthese eines <one>ds-DNA Stranges</one>
|
229
|
+
- Warum sind <one>Stop-Codons</one> <two>experimentell wichtig</two>? Da wir hier <one>künstliche Aminosäuren in Proteine</one> einbauen können. Dies ist in der <one>synthetischen Biologie</one> wichtig.
|
230
|
+
- Die <one>NADH-Dehydrogenase</one> <two>enthält welche prosthetische Gruppe</two>? <one>FMN</one>: <two>Flavinmono-nucleotid</two>. URL: https://de.wikipedia.org/wiki/Mitochondrielle_NADH-Dehydrogenase
|
231
|
+
- Is <one>the synthesis of a polypeptide</one> <two>an endergonic process</two>? <one>Yes</one>, of course.
|
232
|
+
- In <one>Elastin</one> finden wir vor allem <two>welche vier Aminosäuren</two>? (1) <one>Glycin</one> (<two>G</two>) (2) <one>Alanin</one> (<two>A</two>) (3) <one>Valin</one> (<two>V</two>) (4) <one>Prolin</one> (<two>P</two>)
|
233
|
+
- <one>Alpha-Keratin</one> <two>besteht aus ...</two>? A: <one>Zwei</one> <two>rechtsgängigen Alpha-Helices</two>. URL: https://de.wikipedia.org/wiki/Keratine#Struktur_und_Eigenschaften
|
234
|
+
- Was genau sind <one>Oxygenasen</one> und <two>was benötigen sie</two>? <one>Oxygenasen</one> sind <two>Enzyme</two>, die ein oder mehrere <three>Sauerstoffatome</three> auf ihr Substrat übertragen. Hierbei findet oft auch eine <four>Ringöffnung an einem aromatischen Molekül</four> statt. Meistens wird NADP/NADPH verbraucht.
|
235
|
+
- <one>GFP</one> contains a chromophor. <two>How many aminoacids are part of this chromophor</two>? <one>Six</one>; it is thus a <two>Hexapeptide</two>.
|
236
|
+
- Welche <one>vier</one> <two>Transporttypen</two> gibt es für die Zelle? (1) <one>Diffusion</one> (2) Sekundärer Transport; dieser umfasst "Uniport", "Symport", "Antiport" (3) Primärer Transport (4) <one>Group Translocation</one>
|
237
|
+
- <one>Trypsinogen</one> kann in <two>Trypsin</two> verwandelt werden. <three>Welches Enzym ist hierbei wichtig</three>? Die <one>Enteropeptidase</one>. URL: https://en.wikipedia.org/wiki/Enteropeptidase
|
238
|
+
- Wieso können <one>Antimetabolite</one> <two>Enzyme hemmen</two>? <one>Antimetabolite</one> <two>besetzen die allosterischen Bindungsstelle eines Enzyms</two>.
|
239
|
+
- <one>Wieso</one> benötigt <two>RUBISCO</two> ein <three>Magnesiumion</three>? Dieses <one>Magnesium</one> <two>stabilisiert eine negative Ladung</two>.
|
240
|
+
- <one>Katalasen</one> <two>benötigen welches Atom</two>? <one>Eisen</one>.
|
241
|
+
- Übertragen <one>Lichtsammelkomplexe</one> Elektronen von Antennenpigmenten auf das Reaktionszentrum bei der Photosynthese? <one>Nein</one> - <two>nur Energie</two> <three>wird weitergegeben</three>.
|
242
|
+
- Beim <one>splicing</one> gibt es ein Adenosin als <three>Verzweigungsstelle</three>. <two>Wo</two> liegt diese Verzweigungsstelle in etwa? <two>20-40 Nukleotide stromaufwärts</two> der <one>3' Spleißstelle</one>.
|
243
|
+
- <one>Keratin</one> and <one>Collagen</one> have different <two>handedness</two>. <three>Name them</three>. A: (1) <one>Collagen</one> has <two>L→R</two> (2) <one>Keratin</one> has <two>R→L</two> - und als <two>CO₂</two> abgegeben.
|
244
|
+
- Nenne <one>zwei</one> <two>Proteingruppen</two>, die häufig <three>Oligosaccharidstrukturen</three> auf der Oberfläche aufweisen. A: (1) <one>Membranproteine</one> (2) <one>sekretorische Proteine</one>
|
245
|
+
- In der Biochemie: was ist die <one>Kinetik</one>? Die <one>Kinetik</one> charakterisiert die <two>Geschwindigkeit einer Reaktion</two>.
|
246
|
+
- Nenne <one>drei Serinproteasen</one> und <two>gib weiters an wo genau diese spalten</two>. A: (1) <one>Chymotrypsin</one>: spaltet nach <two>grossen, hydrophoben Resten</two> (2) <one>Elastase</one>: spaltet nach <two>kleinen, neutralen Resten</two> (3) <one>Trypsin</one>: spaltet nach <two>positiven Resten</two>
|
247
|
+
- <one>Wieso</one> benötigen <two>tierische Zellen</two> die <three>Dihydrofolat-Reduktase</three>? Um den Cofaktor <one>Folsäure</one> zu synthetisieren. URL: https://de.wikipedia.org/wiki/Fols%C3%A4ure
|
248
|
+
- Is <one>mitochondrial ATP synthesis</one> <two>an independent process</two>? No, not at all! It <one>requires a coupled electron flow through the respiratory chain</one>.
|
249
|
+
- <one>Hemicellulose</one> <two>ist ein Polysaccharid</two>. <three>Nenne mindestens drei verschiedene Saccharide die man darin finden kann</three>. A: <<one>XAG</one>> <two>Xylose</two>, <two>Arabinose</two>, <two>Galactose</two>.
|
250
|
+
- Nenne <one>vier Enzyme</one> die wichtig sind für den <two>Chitinabbau</two>. A: (1) <one>Endo-Chitinase</one> (2) <one>Exo-Chitinase</one> (3) <one>Chitobiase</one> (4) <one>Deacetylase</one>
|
251
|
+
- <one>Wie</one> können wir beweisen das der <two>F1 Anteil der ATP Synthase</two> katalytisch aktiv ist? Wenn wir den F1 Anteil isolieren, dann besitzen dessen Untereinheiten weiterhin eine <one>ATPase-Aktivität</one>.
|
252
|
+
- Was ist <one>Gs</one> und <one>Gi</one> in der <two>Signaltransduktion</two>? (1) <one>Gs</one> ist ein <two>stimulatorisches G-Protein</two> (2) <one>Gi</one> ist ein <two>inhibitorisches G-Protein</two>
|
253
|
+
- Nenne <one>fünf verschiedene Beispiele</one> für <two>reduzierende Zucker</two>. A: (1) <one>Fructose</one> (2) <one>Glucose</one> (3) <one>Galactose</one> (4) <one>Maltose</one> (5) <one>Lactose</one>
|
254
|
+
- Nenne <one>drei Wege des Proteintransportes</one>. A: (1) <one>Gated Transport</one> (2) <one>Transmembrantransport</one> (3) <one>Vesikeltransport</one>
|
255
|
+
- <one>Warum</one> ist die Bezeichnung <two>Dunkelreaktion</two> eigentlich <three>irreführend</three>? A: Die <one>Dunkelreaktion</one> suggeriert das sie kein Licht benötigt; sie braucht aber ebenso <two>Lichtenergie</two> damit sie funktioniert.
|
256
|
+
- Ein <one>Thioester</one> wird aus <two>welchen zwei Komponenten</two> gebildet? <one>Thioalkohol</one> sowie <one>Carbonsäure</one>.
|
257
|
+
- Beim <one>Splicing-Vorgang</one>: <two>wer</two> <three>initiiert die Attacke</three>? Das <one>2' OH von Adenin</one> greift die 5' Stelle des stromaufwärts gelegenen Introns an.
|
258
|
+
- <one>5-Methylcytosin</one> kann zu <one>Thymin</one> deaminieren, also ein <two>NH₃</two> verlieren. <three>Was brauchen wir aber noch, und warum</three>? Ein <one>H₂O Molekül</one>, das uns das <two>O</two> liefert.
|
259
|
+
- <one>Why</one> do cells require <two>folic acid</two>? <one>Folic acid</one> is used as <two>a coenzyme in the synthesis of nucleic acids</two>. URL: https://en.wikipedia.org/wiki/Folate#DNA_production
|
260
|
+
- <one>Welches sind</one> <two>die wichtigsten</two> <three>Homoglykane</three> (vier nennen)? (1) das <one>Glykogen</one> der <two>Tiere</two> (2) <one>Stärke</one> aus <two>Pflanzen</two> (3) <one>Zellulose</one> aus Pflanzen (4) <one>Chitin</one> als Gerüstsubstanz bei Arthropoda und Pilzen
|
261
|
+
- <one>How</one> do <two>antifreeze proteins</two> work, in general? They <one>prevent the growth of ice crystals</one>.
|
262
|
+
- Kinder mit <one>starker PKU</one> haben oft blondes Haar und reduzierte Körperpigmente. <two>Wieso</two>? Die <two>Absenz von PAH</two> (<three>phenylalanine hydroxylase</three>) führt zu einem <one>metabolischen Block</one>. Tyrosin kann normalerweise in Melanin konvertiert werden, PKU Patienten können aber nicht Phenylalanin zu Tyrosin konvertieren.
|
263
|
+
- <one>Was genau</one> stellt <two>das distale Histidin im Hämoglobin</two> zur Verfügung? Eine <one>Wasserstoffbrücke</one>. URL: https://nds.wikipedia.org/wiki/H%C3%A4moglobin
|
264
|
+
- Aus <one>welchen zwei Komponenten</one> besteht ein <two>Hemiacetal</two>? Aus dem Anteil eines <one>Aldehyd-Restes</one> sowie eines <one>Alkohol-Restes</one>.
|
265
|
+
- <two>Wo</two> vor allem finden wir das <one>Beta-Alpha-Beta Motif</one> häufig? Fast immer <one>bei parallelen Beta-Sheets</one>.
|
266
|
+
- Das menschliche <one>Retinol-Bindeprotein</one> hat eine <two>Beta-Fass-Struktur</two>. <three>Diese Struktur besteht woraus</three>? Dieses Beta-Fass besteht aus <one>acht auf - und absteigenden Beta-Strängen</one>.
|
267
|
+
- In der Proteinbiochemie, bei einem <one>twisted open sheet</one>: <two>wie lässt sich das aktive Zentrum vorhersagen</two>? Anhand der <one>Topological Switch Points</one>.
|
268
|
+
- Name <one>two ways</one> for a cell to <two>maintain a reducing atmosphere</two>. A: (1) a <one>high ratio of NADPH to NADP⁺</one> (2) a <one>high ratio of reduced to oxidized glutathione</one>
|
269
|
+
- <one>Why</one> is it important for us to know whether a protein has many <two>hydrophobic</two> or <two>hydrophilic</two> side chains? So that we can understand and predict, up to a certain degree, <one>how proteins fold up three-dimensionally</one>.
|
270
|
+
- Nenne <one>zwei funktionelle Gruppen</one> mit <two>hoher Nucleophilie</two> in den Proteinen. A: (1) die <one>Amino-Gruppe</one> von <two>Lysin</two> (2) die <one>Imidazol-Gruppe</one> des <two>Histidin</two>
|
271
|
+
- Die <one>Fettsäuresynthese</one> ist <two>eine Kondensationsreaktion zwischen ... </two>? <one>Acetyl-ACP</one> und <one>Malonyl-ACP</one> (ACP heisst <two>Acyl Carrier Protein</two>). URL: https://en.wikipedia.org/wiki/Histone_acetyltransferase
|
272
|
+
- From a <one>biochemical point of view</one>: <two>why can't humans make use of purines and pyrimidines more</two>? They lack the enzyme <one>urate oxidase</one>, which means that they can not convert <one>uric acid</one> (<three>Harnsäure</three>). URL: https://en.wikipedia.org/wiki/Urate_oxidase
|
273
|
+
- <two>Unterschied</two> im Abbau von <one>Purinen</one> und <one>Pyrimidinen</one>? (1) Der <one>Abbau von Purin</one> führt zu <two>potenziell toxischen Produkten</two>. (2) Der <one>Abbau von Pyrimidin</one> führt zu <two>ungiftigen Zwischenprodukten</two>.
|
274
|
+
- Name <one>two enzymes</one> of the <two>salvage pathway</two>. A: (1) <one>APPT</one>: <two>Adenine phosphoribosyltransferase</two> (2) <one>HGPRT</one>: <two>Hypoxanthine-guanine phosphoribosyltransferase</two> (<one>HGPRT</one>)
|
275
|
+
- In protein structure we can find the <one>greek key motif</one>. <two>How does this look</two>? This motif has <one>four adjacent antiparallel strands</one>. Three of these are connected by hairpins, while the fourth is adjacent to the first and linked to the third by a longer loop.
|
276
|
+
- Eine Zelle kann das Aldehyd <one>Allysin</one> synthetisieren. <two>Welches Enzym bewerkstelligt dies und benutzt welches Ausgangsprodukt hierfür</two>? Das Enzym ist die <one>Lysyl-Oxidase</one>. Dieses Enzym desaminiert Lysin - das Ausgangsprodukt - und stellt so das Aldehyd <two>Allysin</two> her.
|
277
|
+
- <one>Woraus</one> besteht das <two>Beta-Haarnadelschleifen Motiv</two>? Aus <one>zwei Beta-Strängen</one>.
|
278
|
+
- What are <one>conjugated proteins</one>? <one>Conjugated proteins</one> are <two>proteins that are linked to molecules of other types</two>. []
|
279
|
+
- Wird die <one>α-Aminogruppe der Aminosäuren</one> <two>in den Harnstoffzyklus eingeschleust</two>? <one>Ja</one>. []
|
280
|
+
- How are the enzymes called that can synthesize <one>Polyketides</one>? <one>Polyketide synthases</one>. URL: https://en.wikipedia.org/wiki/Polyketide_synthase []
|
281
|
+
- Der <one>'Rohstoff'</one> <two>für Taurin</two> ist ... ? Die Aminosäure <one>Cystein</one>. Taurin ist eine <two>Aminoethansulfonsäure</two> (schwefelhaltige Säure). URL: https://de.wikipedia.org/wiki/Taurin []
|
282
|
+
- <one>Hemmstoffe</one> <two>gegen die HMG-CoA-Reduktase</two> werden als ... bezeichnet. A: <one>Statine</one> - also <two>Cholesterin- und LDL-Senker</two>. []
|
283
|
+
- Der <one>pH-Wert</one> <two>des menschlichen Blutplasmas</two> <three>liegt bei etwa ... </three>? <one>7.40</one> []
|
284
|
+
- Sind <one>biologische Flüssigkeiten</one> <two>gepuffert</two>? <one>Ja</one>. []
|
285
|
+
- Wir können <one>PD10-Säulchen</one> verwenden, die ein <two>Sephadex-Gelfiltrationsharz</two> besitzen. <three>Bis zu welcher Größe trennt man hier</three>? Moleküle die <one>größer als 5 kDa</one> sind. []
|
286
|
+
- Kann <one>eine tierische Zelle</one> <two>ein Peptid aus D-Aminosäuren</two> <three>abbauen</three>? <one>Nein</one> - <two>die Enzyme für den Abbau erkennen diese Aminosäuren nicht</two>. []
|
287
|
+
- The peptide sequence <one>Val-Lys-Glu-Met-Ser-Trp-Arg-Ala</one> is digested with <two>chymotrypsin</two>. <three>What will be the result of this procedure</three>? <one>Val-Lys-Glu-Met-Ser-Trp</one><two> | </two><one>Arg-Ala</one> []
|
288
|
+
- Welche <one>drei</one> <two>Strukturproteine</two> können in <three>Bindewegebe</three> gefunden werden? (1) <one>Elastin</one> (2) <one>Kollagen</one> (3) <one>Retikulin</one> []
|
289
|
+
- <one>Chitin</one> <two>ist ein Polymer</two>, der aus welchen Untereinheiten zusammengesetzt ist? Aus <one>N-Acetylglucosamin</one>. URL: https://de.wikipedia.org/wiki/Chitin []
|
290
|
+
- <one>Pyrophosphat</one> <two>besitzt wieviele P-Atome</two>? <one>Zwei</one>. URL: https://de.wikipedia.org/wiki/Diphosphate []
|
291
|
+
- Wichtig für seine Rolle als <one>zellulärer Redoxpuffer</one> ist - chemisch betrachtet - <two>in Glutathion</two> <three>welche Gruppe</three>? Die <one>-SH Gruppe</one> <two>von Cystein</two>. []
|
292
|
+
- Im <one>ATP-Molekül</one> <two>bei den drei Phosphatresten</two>: <three>welche zwei Bindungstypen können wir bei ihnen finden</three>? (1) Eine <one>Esterbindung</one> <two>beim Alpha-Teil</two> (2) zwei <one>Anhydridbindungen</one> <two>beim Beta und Gamma-Teil</two> []
|
293
|
+
- Kommen <one>Proteoglykane</one> <two>in der extrazellulären Matrix</two> vor? <one>Ja</one>. []
|
294
|
+
- <one>Welches Protein</one> <two>erkennt die für den Kern bestimmten Proteine</two>? Der Rezeptor <one>Importin</one>. []
|
295
|
+
- Bei den <one>Aminotransferasen</one>: <two>wer</two> ist <three>der häufigste</three> <four>Akzeptor der Aminogruppe</four>? <one>Alpha-Ketoglutarat</one>. URL: https://de.wikipedia.org/wiki/%CE%91-Ketoglutars%C3%A4ure []
|
296
|
+
- Name the <one>trisaccharide of</one> <two>glucose</two>. A: <one>Maltotriose</one>. URL: https://en.wikipedia.org/wiki/Maltotriose []
|
297
|
+
- Nenne <one>eine Funktion des glatten ERs</one> <two>im Muskel</two>. A: Es dient hier als <one>Calcium-Speicher</one>: das <two>sarkoplasmatische Retikulum</two>. []
|
298
|
+
- Die <one>prosthetische Gruppe von Myoglobin</one> ist ... ? <one>Häm</one>. []
|
299
|
+
- Sind <one>Calcium-Ionen</one> <two>an der Muskelkontraktion beteiligt</two>? <one>Ja</one>. []
|
300
|
+
- Nenne <one>ein Beispiel</one> für eine <two>Zinkprotease</two>. A: Die <one>Carboxypeptidase A</one>. URL: https://en.wikipedia.org/wiki/Carboxypeptidase_A []
|
301
|
+
- Besitzt die <one>Kollagenhelix</one> <two>interne Wasserstoffbrücken</two>? A: <one>Nein</one>. []
|
302
|
+
- <one>Photorespiration</one> <two>arises from ...</two>? From <one>RuBisCO's</one> <two>oxygenase</two> <one>activity</one>. URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3244903/ []
|
303
|
+
- Enthalten <one>Lipoproteine</one> <two>in der Schale</two> <three>verschiedene Apolipoproteine</three>? <one>Ja</one>. []
|
304
|
+
- Sind <one>biologische Membranen</one> <two>asymmetrisch</two>? <one>Ja</one>. []
|
305
|
+
- <one>Acetylcholin</one> wirkt an welchen zwei Typen von Cholinorezeptoren? (1) <one>nikotinischen Acetylcholinrezeptoren</one> (2) <one>muskarinischen Acetylcholinrezeptoren</one> []
|
306
|
+
- Eine <one>Peptidbindung</one> kann mit Hilfe von ... gespalten werden (Hinweis: hier ist nicht ein Enzym gemeint). A: <one>Wasser</one>. []
|
307
|
+
- Liegt <one>E-Selektin</one> <two>glykosyliert vor</two>? <one>Ja</one>. []
|
308
|
+
- <one>Chaperone</one> <two>binden bevorzugt an welche Bereiche in einer Polypeptidkette</two>? An die <one>hydrophoben Aminosäuren</one>. []
|
309
|
+
- Wirkt <one>Acetylcholin</one> als <two>Neurotransmitter</two>? <one>Ja</one>. []
|
310
|
+
- Liegt <one>Glutathion</one> (<two>GSH</two>) <two>in hoher Konzentration in Zellen vor</two>? <one>Ja</one> - mit einer Konzentration bis zu 5 mM. []
|
311
|
+
- Hemmen <one>Statine</one> <two>die Cholesterinsynthese</two>? <one>Ja</one>. []
|
312
|
+
- Das Sterol <one>Cholesterol</one> <two>kommt wo vor</two>? In den <one>Membranen tierischer Zellen</one>. URL: https://de.wikipedia.org/wiki/Cholesterin []
|
313
|
+
- Das Protein <one>Dcp2</one>: die Abkürzung <two>Dcp</two> <three>steht für ... </three>? <one>Decapping</one>. []
|
314
|
+
- <one>Cellulose</one> <two>besteht aus ... </two>? Einem <one>linearen Polymer aus Glucoseeinheiten</one>. URL: https://de.wikipedia.org/wiki/Cellulose []
|
315
|
+
- Bei der <one>Biosynthese von Tryptophan</one> spielt <two>PRPP</two> eine wichtige Rolle. Wofür steht <two>PRPP</two>? <one>Phosphoribosylpyrophosphat</one>. (<two>Phospho-ribosyl-pyro-phosphat</two>). URL: https://de.wikipedia.org/wiki/Phosphoribosylpyrophosphat []
|
316
|
+
- Im Blutgruppensystem gibt es die <one>H-Substanz</one>. <two>Woraus besteht diese</two>? Aus den drei Komponenten <one>FAG</one>: (1) <two>Fukose</two> (2) <two>Acetyl-Glucosamin</two> (3) <two>Galaktose</two> []
|
317
|
+
- Andere Bezeichnung für <one>aktives Isopren</one>? <one>Isopentenylpyrophosphat</one>. URL: https://de.wikipedia.org/wiki/Isopentenylpyrophosphat []
|
318
|
+
- <one>Phosphogylceride</one> <two>können mit Alkoholen verestert werden</two>. <three>Nenne fünf davon, in alphabetischer Reihenfolge</three>. A: (Merkslogan: <one>CEGIS</one>) (1) <two>Phosphatidyl</two><three>C</three><four>holin</four> (<five>Lecithin</five>) (2) <two>Phosphatidyl</two><three>E</three><four>thanolamin</four> (3) <two>Phosphatidyl</two><three>G</three><four>lycerin</four> (4) <two>Phosphatidyl</two><three>I</three><four>nositol</four> (5) <two>Phosphatidyl</two><three>S</three><four>erin</four> []
|
319
|
+
- Bei dem <one>Nicotinamidadenindinucleotiden</one>: <two>wo</two> erfolgt die Reduktion beziehungsweise Oxidation von NAD(P)/H? Am <one>Nicotinamid</one>. []
|
320
|
+
- Nenne <one>zwei Zwecke</one> die <two>Triacylglycerin</two> <three>im menschlichen Körper erfüllt</three>. A: (1) <one>Fettspeicher</one> (2) <one>Wärmepolster</one> []
|
321
|
+
- In einem Protein: <one>wo</one> können die Aminosäuren <two>Asparagin</two> und <two>Glutamin</two> gefunden werden? Diese Aminosäuren sind <one>sehr polar</one>, daher finden wir sie sehr <two>häufig an Proteinoberflächen</two>. []
|
322
|
+
- Nenne <one>zwei Beispiele</one> für <two>Faserproteine des Menschen</two>. A: (1) <one>Kollagen</one> (2) <one>Myosin</one> []
|
323
|
+
- Die <one>Phosphofructokinase</one> <two>wandelt welches Substrat in welches Produkt um</two>? Die <one>Phosphofructokinase</one> akzeptiert <two>Fructose-6-Phosphat</two> und erzeugt <two>Fructose-1,6-bisphosphat</two>. URL: https://en.wikipedia.org/wiki/Phosphofructokinase []
|
324
|
+
- <one>Which two types</one> of <two>ATP-Formation</two> exist? (1) <one>oxidative phosphorylation</one> (2) <one>substrate phosphorylation</one> []
|
325
|
+
- Ein <one>Thioester</one> <two>besitzt welche funktionelle Gruppe</two>? <one>-C=O-S Gruppe</one>. []
|
326
|
+
- Was genau sind <one>Lipoproteine</one> und <two>wo</two> mag man diese zellulär gesehen finden? <one>Lipoproteine</one> sind <two>Assoziation von Lipiden mit Proteinen</two>, <three>zum Beispiel in Membranen</three>. []
|
327
|
+
- <one>Wieviele</one> <two>antiparallele Beta-Stränge</two> können in <three>Porin</three> gefunden werden? <one>16</one>. []
|
328
|
+
- <one>Aus wieviel verschiedenen Proteinen</one> besteht die <two>Propionyl-CoA-Carboxylase</two>? A: Aus <one>zwei</one>, der Alpha Untereinheit und <two>Beta Untereinheit</two>. []
|
329
|
+
- Nenne <one>ein Beispiel</one> für eine <two>Metallionenkatalyse</two> in der Biochemie. A: Die <one>Carboxypeptidase A</one>. URL: https://en.wikipedia.org/wiki/Carboxypeptidase_A []
|
330
|
+
- The act of <one>Ubiquitination</one> <two>is carried out in three main steps</two>. How are these called, in <three>one-word form</three> for each step? (1) <one>activation</one> (2) <one>conjugation</one> (3) <one>ligation</one> []
|
331
|
+
- <one>Titin</one> <two>besitzt maximal wieviele Aminosäurereste</two>, in der <three>größten Isoform</three>? <one>~33.000</one>. []
|
332
|
+
- Nenne <one>eine gemeinsame Aktivität</one> von <two>Actin</two> und <two>Myosin</two>. A: Die <one>ATP-Hydrolyse</one>. []
|
333
|
+
- <one>Von welchem Molekül</one> erhält die <two>Carbamylphosphat-Synthase</two> ihr erstes <three>Stickstoffatom</three>? Vom <one>Harnstoff</one>. []
|
334
|
+
- Das Wort Protein stammt von <one>proteios</one>, das wiederum was bedeutet? <one>Erstrangig</one>. URL: https://link.springer.com/chapter/10.1007/978-3-540-73804-6_2 []
|
335
|
+
- Nenne ein <one>Lysinderivat</one>. A: <one>5-Hydroxylysin</one>. URL: https://de.wikipedia.org/wiki/Hydroxylysin []
|
336
|
+
- The <one>AMPK</one> (<two>AMP-activated protein kinase</two>) <three>contains how many subunits</three>? <one>Three</one> - it is thus <two>a heterotrimeric protein complex</two>. []
|
337
|
+
- What would be <one>a better name</one> <two>for the ATP synthase</two>? <one>F₁F₀ ATP synthase</one>. URL: https://en.wikipedia.org/wiki/ATP_synthase []
|
338
|
+
- <one>Glucosamin</one> ist ein Baustein in manchen <two>Polysacchariden</two>. <three>Nenne zwei davon</three>. A: (1) <one>Chitin</one> (2) <one>Chitosan</one> []
|
339
|
+
- <one>Inosinic acid</one> <two>contains ...</two>? The <one>purine</one> <two>hypoxanthine</two>. URL: https://en.wikipedia.org/wiki/Hypoxanthine []
|
340
|
+
- <one>Bromcyan</one> <two>spaltet wo</two>? An <one>Methionin</one> (<one>M</one>). URL: https://de.wikipedia.org/wiki/Bromcyan []
|
341
|
+
- <one>PMSF</one> (<two>Phenylmethanesulfonyl fluoride</two>) <three>is an inhibitor</three>. <four>What can it inhibit</four>? <one>PMSF</one> <two>can inhibit serine proteases</two>. (Mnemonic: <three>S</three> in PMSF ... <three>Serine</three>.) URL: https://en.wikipedia.org/wiki/PMSF []
|
342
|
+
- What does <one>myostatin</one> mean, literally? (1) <one>myo</one> means <two>muscle</two>. (2) <one>statin</one> means <two>stop</two>. []
|
343
|
+
- <one>Durch welche Reaktion</one> werden <two>Disulfidbrücken</two> gebildet? Durch die <one>Oxidation</one> <two>von zwei</two> <three>Mercaptofunktionen</three>. []
|
344
|
+
- Was ist eine <one>Alpha-Ketosäure</one>? Dies ist <one>ein Kohlenstoffgerüst einer Aminosäure</one>, <two>bei der die Aminogruppe entfernt wurde</two>. URL: https://de.wikipedia.org/wiki/Ketos%C3%A4uren#%CE%B1-Ketos%C3%A4uren []
|
345
|
+
- <one>Wann</one> wird die <two>AMPK</two> <three>aktiv</three>? Die <one>AMP-aktivierte Kinase AMPK</one> wird dann aktiv, wenn <two>AMP</two> in einer Zelle <three>akkumuliert</three>. []
|
346
|
+
- <one>Wohin</one> schauen <two>die Reste einer Aminosäure</two> <three>in einer Alpha-Helix</three>? Die Reste einer Aminosäure in einer Alpha-Helix zeigen alle <one>nach außen</one>. []
|
347
|
+
- <one>Pyridoxalphosphat</one> <two>ist ein Derivat von ...</two>? Von <one>Vitamin B6</one>. URL: https://de.wikipedia.org/wiki/Pyridoxalphosphat []
|
348
|
+
- Nenne ein (indirektes) <one>Transportsystem</one> für das Reduktionsmittel <two>NADH</two> <three>in den Mitochondrien</three>. A: Der <one>Malat-Aspartat-Shuttle</one>. URL: https://de.wikipedia.org/wiki/Malat-Aspartat-Shuttle []
|
349
|
+
- <one>When</one> is a <two>G-protein inactive</two>? When its <one>Alpha subunit</one> has <two>bound GDP</two>. URL: https://en.wikipedia.org/wiki/G_protein []
|
350
|
+
- Nenne <one>zwei Methoden</one> wie wir <two>reversible Enzyminhibitoren</two> <three>aus einer Lösung entfernen können</three>. A: (1) <one>Dialyse</one> (2) <one>Gelfiltration</one> []
|
351
|
+
- Nenne <one>zwei verschiedene Substanzen</one>, die die <two>Chlortetracyclinsynthese</two> <three>unterdrücken können</three>. A: (1) <one>Glucose</one> (2) <one>Phosphat</one> []
|
352
|
+
- <one>In welchem Gewebe</one> können üblicherweise viele <two>Proteoglykane</two> und <two>Glykosaminglykane</two> gefunden werden? Im <one>Knorpelgewebe</one>. URL: https://de.wikipedia.org/wiki/Knorpel []
|
353
|
+
- Die <one>Aromatase</one> <two>gehört zu welcher Familie</two>? Zur <one>CYP-Familie</one>. URL: https://de.wikipedia.org/wiki/Aromatase []
|
354
|
+
- In any given protein: <one>where</one> can <two>find disulfide bonds</two> <three>NOT</three> be found? <one>Disulfide bridges</one> require an <two>oxidative environment</two> - and are thus <three>not found in intracellular proteins</three>. []
|
355
|
+
- <one>Cyclophilin</one> <two>hilft bei welchem zellulären Vorgang</two>? Beim <one>Faltungsvorgang von Proteinen</one>. URL: https://en.wikipedia.org/wiki/Cyclophilin []
|
356
|
+
- <one>Welche eigentliche Funktion</one> hat <two>Avidin</two>? <one>Avidin</one> <two>wirkt vermutlich inhibitorisch auf das Bakterienwachstum</two> und mag so als <three>Abwehrmechanismus</three> dienen. []
|
357
|
+
- Wie werden die Untereinheiten der <one>gap junctions</one> genannt? <one>Connexin-Untereinheiten</one>, 6 Stück davon. URL: https://en.wikipedia.org/wiki/Connexin []
|
358
|
+
- Die <one>NMR</one> geschieht für <two>Proteine mit einer maximalen Größe von ...</two>? <one>30 kDa</one>. URL: https://de.wikipedia.org/wiki/Kernspinresonanzspektroskopie []
|
359
|
+
- <one>Chymotrypsin</one> besitzt <two>n Dilsufidbrücken</two>? <one>5</one>. URL: https://en.wikipedia.org/wiki/Chymotrypsin []
|
360
|
+
- Provide another name for the <one>Monooxygenases</one>. A: <one>Mixed function oxidases</one>. URL: https://en.wikipedia.org/wiki/Monooxygenase []
|
361
|
+
- Was ist ein <one>Orthophosphat</one>? <two>Gib auch dessen Ladung an</two>. A: Ein <one>Orthophosphat</one> ist ein Phosphat-Atom mit <two>4 gekoppelten O-Atomen</two>; also ein <two>PO₄</two><three>³⁻</three> Ion. URL: https://en.wikipedia.org/wiki/Phosphoric_acids_and_phosphates#Orthophosphate []
|
362
|
+
- Andere Bezeichnung für <one>Supersekundärstruktur</one>? <one>Motiv</one>. []
|
363
|
+
- <one>Was genau</one> heißt <two>Hydrolyse</two>? <one>Abbau durch Wasser</one>. URL: https://de.wikipedia.org/wiki/Hydrolyse []
|
364
|
+
- Nenne <one>die drei Typen</one> der <two>reversiblen Hemmung</two>. A: (1) <one>kompetitive Hemmung</one> (2) <one>unkompetitive Hemmung</one> (3) <one>nichtkompetitive Hemmung</one> []
|
365
|
+
- Ein <one>Thioester</one> besitzt was für einen charakteristischen <two>Rest</two>? <one>-C=O-S</one>. URL: https://de.wikipedia.org/wiki/Thioester []
|
366
|
+
- <one>Aldehyde Ribose</one> <two>can change into which structure</two> in equilibrium? <one>Beta-Furanose</one>. URL: https://de.wikipedia.org/wiki/Furanosen []
|
367
|
+
- Beim <one>trp-Operon</one> <two>in E. coli</two>: <three>was ist das Startmolekül in der Biosynthese von Tryptophan</three>? <one>Chorismic acid</one>. URL: https://en.wikipedia.org/wiki/Chorismic_acid []
|
368
|
+
- <one>Verträglichkeitsgrenze von Histamin</one> <two>für den Menschen</two>, <three>in n mg</three>? <one>10 mg</one> - also <two>ziemlich wenig</two>. URL: https://de.wikipedia.org/wiki/Histamin []
|
369
|
+
- <one>Welche zwei chemischen Elemente</one> benötigt die <two>Aconitase</two>? (1) <one>Eisen</one> (2) <one>Schwefel</one> []
|
370
|
+
- Nenne ein <one>Proteoglykan</one>, das mit dem Buchstaben <two>H</two> beginnt. A: <one>Heparin</one> - ein Vielfachzucker. URL: https://de.wikipedia.org/wiki/Heparin []
|
371
|
+
- <one>Wieso</one> kann ein Mensch mit <two>Cyanid</two> <three>vergiftet werden</three>? <one>Cyanid</one> hemmt das Enzym <two>Cytochrom-c-Oxidase</two> <three>in der Atmungskette</three>. []
|
372
|
+
- Nenne <one>zwei</one> wichtige, <two>eukaryote Adhäsionsproteine</two>. A: (1) <one>Fibronectin</one> (2) <one>Laminin</one> []
|
373
|
+
- Wie können wir <one>Geschwindigkeitskonstanten</one> von <one>Gleichgewichtskonstanten</one> <two>unterscheiden</two>? (1) <one>Gleichgewichtskonstanten</one> werden mit <two>GROßEM K</two> (englisch: <three>equilibrium constant</three>) angeschrieben. (2) <one>Geschwindigkeitskonstanten</one> hingegen mit einem <two>kleinem k</two> (englisch: <three>rate constant</three>) geschrieben. []
|
374
|
+
- <one>Tropomyosin</one> <two>contains how many strands</two>? <one>Two</one>. URL: https://en.wikipedia.org/wiki/Tropomyosin []
|
375
|
+
- <one>Welche Person</one> prägte im Jahre <two>1837</two> den Begriff <three>Katalyse</three>? <one>Berzelius</one>. URL: https://en.wikipedia.org/wiki/J%C3%B6ns_Jacob_Berzelius []
|
376
|
+
- Nenne <one>zwei</one> <two>Lektin-Vertreter</two>. A: (1) <one>Concanavalin A</one> (<two>ConA</two>) (2) <one>Phythämagglutinin</one> (<two>PHA</two>) []
|
377
|
+
- Nenne ein konkretes Beispiel, wo wir Menschen <one>Glykoproteine</one> brauchen. A: Für die <one>Blutgruppentypen</one>. URL: https://de.wikipedia.org/wiki/Blutgruppe []
|
378
|
+
- <one>Welche Ladung</one> tragen <two>Histone</two>? <one>+</one> (<two>positive Ladung</two>). []
|
379
|
+
- Bei der <one>Biosynthese von Histidin</one>: <two>welche Substanz</two> ist der direkte Vorläufer? <one>Ribose-5 phosphat</one>. URL: https://en.wikipedia.org/wiki/Ribose_5-phosphate []
|
380
|
+
- Nenne die <one>drei Enzyme der Glykolyse</one> die <two>metabolisch irreversibel</two> wirken. A: (1) <one>Pyruvat-Kinase</one> (2) <one>Phosphofructokinase 1</one> (3) <one>Hexokinase</one> []
|
381
|
+
- <one>Triglyceride</one> <two>bauen auf welcher Grundstruktur auf</two>? Auf <one>Glycerol</one>. URL: https://de.wikipedia.org/wiki/Glycerin []
|
382
|
+
- Chemisch betrachtet: was ist ein <one>Halbacetal</one>? Eine <one>Halbacetal</one> ist <two>eine Verbindung aus</two> <three>Aldehyd</three> und <three>Alkohol</three>. []
|
383
|
+
- Give <one>an example for</one> <two>a covalent bond in proteins</two>. A: The <one>disulfide bridge</one>. URL: https://en.wikibooks.org/wiki/Structural_Biochemistry/Chemical_Bonding/_Disulfide_bonds []
|
384
|
+
- <one>Warum</one> ist das <two>Phloem</two> <three>für die Blattläuse ein Problem</three>? Das <two>Phloem</two> enthält <one>wenig Aminosäuren</one>. <three>Blattläuse können 10 der Aminosäuren nicht synthetisieren!</three> []
|
385
|
+
- <one>Durchmesser</one> der <two>F1-Kugel</two> der <three>ATP Synthase</three>? <one>8.5 nm</one>. []
|
386
|
+
- Vorstufe in der <one>Collagen biosynthesis</one>? <one>Procollagen</one>. []
|
387
|
+
- <one>Wo</one>, <two>zum Beispiel</two>, findet man die <three>EF-Helix</three>? Bei <one>Troponin C</one>. []
|
388
|
+
- In der Biochemie: was bedeutet <one>t1</one>/<one>2</one>? <one>Halbwertszeit eines Proteins</one>. []
|
389
|
+
- Die <one>MMP-Proteine</one> <two>gehören zur Familie ... </two>? Der <one>Matrix-Metalloproteinase-Familie</one>. URL: https://en.wikipedia.org/wiki/Matrix_metallopeptidase []
|
390
|
+
- Im Zuge der <one>Biosynthese von Kollagen</one>: <two>was kommt nach dem</two> <three>Prokollagen</three>? Das <one>Tropokollagen</one>. URL: https://de.wikipedia.org/wiki/Kollagene#Biosynthese []
|
391
|
+
- How would we <one>draw</one>, in shorthand notation, the <two>Isopeptide</two> bond <three>for Ubiquitin</three>? <one>-C=O-NH-Lysine</one><two>-Target Protein</two> []
|
392
|
+
- Which <one>ion</one> <two>is used by</two> <three>Rubisco</three>? <one>Mg</one><two>²⁺</two>. []
|
393
|
+
- Nenne <one>ein konkretes Beispiel</one> für einen <two>Entkoppler</two> in der Biochemie. A: <one>2,4-Dinitrophenol</one> (<two>DNP</two>). URL: https://en.wikipedia.org/wiki/2,4-Dinitrophenol []
|
394
|
+
- Was heiß <one>MNase</one> und <two>was kann die MNase</two>? <one>MNase</one> heißt <two>micrococcal nuclease</two>. <three>Dieses Enzym kann DNA schneiden</three>. URL: https://www.neb.com/products/m0247-micrococcal-nuclease []
|
395
|
+
- Die <one>Phospholipase A2</one> generiert <two>Lysophospholipide</two>, <three>die welche Eigenschaft vorweisen</three>? Diese <one>Lysophospholipide</one> können die <two>Zellmembran lysieren</two>. []
|
396
|
+
- In der Zelle: <one>welches Molekül</one> ist der wichtigste Überträger von <two>Acylgruppen</two>? <one>Coenzym A</one>. URL: https://de.wikipedia.org/wiki/Coenzym_A []
|
397
|
+
- In der Biochemie, was sind <one>Entkoppler</one>? Nenne hierzu ein Beispiel. A: Dies sind <one>Substanzen die den Protonengradient unterbrechen und somit die ATP Bildung verhindern</one>, indem die Permeabilität der inneren mitochondrialen Membran erhöht wird. <two>2,4-Dinitrophenol</two> ist ein Beispiel. []
|
398
|
+
- We can produce <one>Arginine</one>, based on <one>Ornithine</one>. <two>Which substance can be found between these two substances</two>, <three>in the biosynthetic pathway</three>? <one>Citrulline</one>. []
|
399
|
+
- Die <one>direkte Amidierung von Glutamat</one> <two>liefert ...</two>? <one>Glutamin</one>. []
|
400
|
+
- <one>lacZ</one>, <one>lacY</one> und <one>lacA</one> <two>kodieren jeweils für ... </two>? A: (1) <one>lacZ</one>: <two>Beta-Galactosidase</two> (2) <one>lacY</one>: <two>Lactose Permease</two> (3) <one>lacA</one>: <two>Thiogalactoside Transacetylase</two> []
|
401
|
+
- Name the <one>two different</one> <two>carbonyl groups</two>. A: (1) <one>aldehyde</one> (2) <one>ketone</one> []
|
402
|
+
- <one>Wo</one> kann <two>konventionelles Myosin</two> <three>gefunden werden</three>? In <one>Muskelfasern</one>. URL: https://de.wikipedia.org/wiki/Muskelfaser#Faserarten []
|
403
|
+
- Name <one>two</one> normal tissues or cell types that convert <two>glucose</two> to <two>lactate</two> <three>even under aerobic conditions</three>. A: (1) <one>retina</one> (2) <one>erythrocytes</one> []
|
404
|
+
- <one>Wie</one> erfolgt <two>die Oxidation der Fettsäure</two> <three>in eukaryoten Zellen</three>? Durch <one>β-Oxidation</one> in den <two>Mitochondrien</two>, bei der jeweils <three>zwei C-Atome</three> abgespalten werden. URL: https://en.wikipedia.org/wiki/Beta_oxidation []
|
405
|
+
- Der <one>pkA Wert von Histidin</one> <two>liegt bei ... </two>? Bei etwa <one>6</one>. []
|
406
|
+
- <one>Wo</one> wird <two>4-Hydroxyprolin</two> benötigt? In <one>Bindegewebsproteinen</one>, <two>wie zum Beispiel in Kollagen</two>. Die Bildung von Kollagen benötigt Ascorbinsäure. []
|
407
|
+
- Die <one>Proteinkinase A</one> <two>besitzt wieviele Untereinheiten</two>? <one>4</one>. URL: https://de.wikipedia.org/wiki/Proteinkinase_A []
|
408
|
+
- <one>Inositoltrisphosphat</one> besitzt <two>wieviele C Atome</two>? <one>6</one>. URL: https://en.wikipedia.org/wiki/Inositol_trisphosphate []
|
409
|
+
- Die <one>Aspartate Beta-Semialdehyde</one> <two>kann nicht zyklisieren</two>. <three>Warum nicht</three>? Da es zu einer <one>zu hohen Ringspannung</one> kommen würde. []
|
410
|
+
- In der Biochemie: nenne <one>zwei Typen</one> von <two>kinetischen Mechanismen</two>. A: (1) <one>Ping-Pong Mechanismen</one> (2) <one>Sequentielle Mechanismen</one> []
|
411
|
+
- <one>Welches Enzym</one> interkonvertiert <two>Glycerinaldehyd-3-phosphat</two> und <two>Dihydroxyacetone</two>? Die <one>Triosephosphat-Isomerase</one>. URL: https://en.wikipedia.org/wiki/Triosephosphate_isomerase []
|
412
|
+
- In der Biochemie: <one>wo</one> kann generell ein <two>Oxyanionen-Loch</two> gefunden werdne? In <one>Serinproteasen</one>. URL: https://de.wikipedia.org/wiki/Serinproteasen []
|
413
|
+
- <one>Der menschliche Körper</one> <two>kann nur welche Form von Eisen resorbieren</two>? Nur <one>zweiwertiges Eisen</one> (<two>Fe²⁺</two>). []
|
414
|
+
- <one>Wozu</one> können <two>Herzglykoside</two> (URL: https://de.wikipedia.org/wiki/Herzglykoside) eingesetzt werden? (1) zur <one>Therapie von Herzinsuffizienz</one> (2) gegen <one>Vorhofflimmern</one> []
|
415
|
+
- <one>Der menschliche Körper</one> <two>produziert täglich</two> <three>n Erythrozyten</three>? Etwa <one>200 Millionen Erythrozyten</one>. []
|
416
|
+
- Anderer Begriff für die <one>aktive Form des Vitamin B2</one>? <one>Riboflavin</one>. (Anmerkung: Riboflavin dient als Vorstufe für FAD. Daher ist Riboflavin chemisch mit FAD relativ stark verwandt.) URL: https://de.wikipedia.org/wiki/Riboflavin []
|
417
|
+
- Es gibt vier <one>charged</one> Aminosäuren. <two>Nenne diese mit Hilfe eines Merkslogan</one>. A: DEKR (Deker) <one>D, E, K, R</one>. []
|
418
|
+
- Für die <one>Hämsynthese</one> benötigt die Zelle nicht nur die Aminosäure <two>Glycin</two>, sondern auch <three>das im Citrazyklus gewonnene ... </three>? A: <one>Succinyl-CoA</one>. []
|
419
|
+
- <one>Ribonuclease A catalysis</one> <two>is an example for ...</two>? <one>Acid base catalysis</one>. []
|
420
|
+
- In der Biochemie: <one>wieso</one> wird <two>Ammoniumsulfat</two> verwendet? <one>Ammoniumsulfat</one> wird verwendet zum <two>Aussalzen von Proteinen</two> - die <three>Ammoniumsulfat-Fällung</three>. []
|
421
|
+
- <one>Wieviel Prozent</one> der <two>dry mass</two> einer Zelle ist mit der <three>Biosynthesis of proteins</three> beschäftigt? 1/3, also etwa <one>33%</one>. []
|
422
|
+
- Was ist die <one>Hill-Reaktion</one>? Die <one>„Wasserspalter-Reaktion“</one>. Die Hill-Reaktion ist eine Reaktion, bei der <two>Wasser</two> in <one>Wasserstoff</one> und <one>Sauerstoff</one> gespalten wird. (<three>2x H₂O → 2xH₂ + O₂</three>) []
|
423
|
+
- In der <one>Enzymkinetik</one>, bei den Formeln: was passiert mit <two>[ES]</two>? <one>[ES]</one> wird zu <two>[E]</two> und <two>[P]</two>. []
|
424
|
+
- Name <one>the two different</one> <two>groups of polysaccharides</two>. A: (1) <one>homopolysaccharides</one> (2) <one>heteropolysaccharides</one> []
|
425
|
+
- Die Zelle kann eine <one>Keto-Gruppe</one> in eine <two>Methylengruppe</two> konvertieren. <three>Welcher Cofaktor wird hierzu benötigt</three>? <one>NADPH</one>. URL: https://de.wikipedia.org/wiki/Nicotinamidadenindinukleotidphosphat []
|
426
|
+
- <one>Leptin</one> <two>ist was für ein Typ</two>? <one>Leptin</one> ist ein <two>Peptidhormon</two>. URL: https://de.wikipedia.org/wiki/Leptin []
|
427
|
+
- <one>Wann</one> wurde der Begriff <two>Biochemie</two> <three>erstmals verwendet</three>? Im Jahre <one>1858</one>, von <two>Vinzenz von Kletzinsky</two>. URL: https://www.biographien.ac.at/oebl/oebl_K/Kletzinsky_Vinzenz_1826_1882.xml []
|
428
|
+
- <one>Mitochondria</one> <two>inhale which substance</two>? <one>Pyruvic acid</one> (<two>CH₃-CO-COOH</two>), which is a <two>ketone</two>. The carboxylate (<one>COO⁻</one>) anione of pyruvic acid ist pyruvate (<one>CH₃-CO-COO⁻</one>). []
|
429
|
+
- Mit welchem <one>Verfahren</one> <two>kann eine Proteinlösung getrocknet werden, unter Beibehaltung der biologischen Aktivität</two>? <one>Gefriertrocknung</one> = <two>Lyophylisation</two> (<two>Lyophilisierung</two>). URL: https://de.wikipedia.org/wiki/Gefriertrocknung []
|
430
|
+
- <one>Welchen Cofaktor</one> <two>benötigt</two> die <three>Lactat-Dehydrogenase</three>? <one>NADH</one>. URL: https://de.wikipedia.org/wiki/L-Lactatdehydrogenase []
|
431
|
+
- Ein <one>Thioester</one> <two>besitzt wieviele (und welche) Atome</two>? <one>3</one> - <two>C</two>, <two>S</two> und <two>O</two>. Genauer: <three>-C=O-S</three> URL: https://de.wikipedia.org/wiki/Thioester []
|
432
|
+
- <one>Ornithin</one> <two>wird über den Harnstoffzyklus</two> <three>in ... umgewandelt</three>? <one>Arginin</one>. URL: https://de.wikipedia.org/wiki/Ornithin []
|
433
|
+
- Nenne <one>drei Beispiele</one> für <two>Rezeptor-Tyrosinkinasen</two>. A: (1) <one>Insulinrezeptor-Typ</one> (2) <one>EGF-Rezeptor-Typ</one> (3) <one>NGF-Rezeptor-Typ</one> []
|
434
|
+
- For <one>group I intron splicing</one>: <two>which component</two> <three>is very important</three>? A <one>guanosine</one> nucleotide. []
|
435
|
+
- Nenne <one>zwei</one> <two>Hemmer der Phosphodiesterase</two>. A: (1) <one>Coffein</one> (2) <one>Theophyllin</one> []
|
436
|
+
- The <one>ribofuranose</one> has <two>n puckered conformations</two>? <one>4</one>. URL: https://en.wikipedia.org/wiki/Ribose []
|
437
|
+
- <one>Lysin</one> <two>kann aus welcher Substanz chemisch hergestellt werden</two>, die mit dem Buchstaben <three>A</three> beginnt? <one>Aminocaprolacton</one>. (<two>Aminoca-pro-lacton</two>) URL: https://en.wikipedia.org/wiki/Aminocaproic_acid []
|
438
|
+
- What is a <one>Ketose</one> and <two>what example could be given for one</two>? A <one>Ketose</one> is <two>a sugar containing at the least one ketone group per molecule</two>. <three>Fructose</three> is an example of a Ketose. URL: https://en.wikipedia.org/wiki/Ketose []
|
439
|
+
- <one>Andere Bezeichnung</one> für <two>Proteine die das ER passieren</two>? <one>Sekretorische Proteine</one>. []
|
440
|
+
- <one>Cystein</one> kann zu <one>Cystin</one> <two>oxidiert</two> oder <two>reduziert</two> werden? <one>Oxidiert</one>. []
|
441
|
+
- Nenne eine <one>Nachweismethode für Östrogene</one>. A: <one>Mäuse-Uterus-Test</one>. []
|
442
|
+
- <one>Wo</one> könnte man <two>Xylitol</two> finden? In <one>Kaugummis</one>. URL: https://de.wikipedia.org/wiki/Xylit []
|
443
|
+
- In <one>Dolicholphosphat</one> können <two>n Isopreneinheiten</two> gefunden werden? <one>20</one>. URL: https://flexikon.doccheck.com/de/Dolicholphosphat []
|
444
|
+
- Was war das erste <one>Aminoglykosid-Antibiotikum</one> das im Jahre <two>1944</two> <three>entdeckt wurde</three>? <one>Streptomycin</one>. URL: https://en.wikipedia.org/wiki/Streptomycin []
|
445
|
+
- Wieviele <one>Esterbindungen</one> können in einem typischen <two>Triacylglycerin</two> gefunden werden? <one>3</one>. []
|
446
|
+
- A <one>furanose</one> is <two>a carbohydrate</two> that has a ring system, consisting of how many members? A <one>furanose</one> is <two>a five-membered ring system</two>. []
|
447
|
+
- Nenne die <one>drei endständigen Gruppen</one> von <two>Isopren</two> (ausgenommen <three>-H</three>). A: (1) <one>-CH₂</one> (2) <one>-CH₂</one> (3) <one>-CH₃</one> []
|
448
|
+
- <one>Der menschliche Körper</one> <two>synthetisiert täglich n g Protein</two>? Mehr als <one>300g Protein</one>. []
|
449
|
+
- <one>Glyphosat</one> <two>inhibiert was genau in der Zelle</two>? Die <one>EPSP Synthase</one>. Das <two>Glyphosatmolekül</two> <three>bindet an das aktive Zentrum der EPSP</three>. URL: https://en.wikipedia.org/wiki/EPSP_synthase []
|
450
|
+
- Nenne <one>zwei Klassifizierungen</one> von <two>Proteasen</two>. A: (1) <one>Exopeptidasen</one> (2) <one>Endopeptidasen</one> []
|
451
|
+
- <one>Maltose</one> und <one>Saccharose</one> sind <two>Disaccharide</two> <three>mit unterschiedlichen glykosidischen Bindungen</three>. <four>Welchen</four>? A: (1) <one>Maltose</one> ist <two>1,4 glykosidisch</two> (2) <one>Saccharose</one> ist <two>1,2 glykosidisch</two> []
|
452
|
+
- Wie nennt man <one>5-gliedrige</one> und <one>6-gliedrige Ringe</one> in der Biochemie jeweils? Mnemo... <one>FuPy</one> ... <one>F</one> ... <one>fünf</one>/<one>five</one> (1) <two>5-gliedrig</two>: <three>Furanose</three> (2) <two>6-gliedrig</two>: <three>Pyranose</three> []
|
453
|
+
- Nenne <one>ein Beispiel</one> für ein <two>geranylgeranyliertes Protein</two>. A: Die <one>GTPase</one> <two>Rho</two>. URL: https://de.wikipedia.org/wiki/Rho-GTPase []
|
454
|
+
- Der <one>Komplex I</one> <two>der Atmungskette</two> <three>nimmt Elektronen von ... </three>? <one>NADH</one>. []
|
455
|
+
- Which <one>three components</one> can be found in a <two>buffer system</two>? (1) <one>liquid</one> (2) <one>weak acid</one> (3) <one>conjugate base</one> []
|
456
|
+
- Die Ladung von <one>ATP</one> ist ... ? <one>Vierfach negativ geladen</one>. URL: https://i.imgur.com/bFAAI7R.png []
|
457
|
+
- Name <one>two sex hormones</one> <two>that are steroids</two>, <three>in mankind</three>. A: (1) <one>estradiol</one> (2) <one>testosterone</one> []
|
458
|
+
- Anderes Wort für die <one>Lactase</one>? <one>Beta-Galactosidase</one>. URL: https://de.wikipedia.org/wiki/Lactase []
|
459
|
+
- Bei der <one>künstlichen DNA-Synthese</one> ist <two>welche Gruppe chemisch geschützt</two>? Das <one>5'-Ende</one>. URL: https://upload.wikimedia.org/wikipedia/commons/thumb/f/f2/Nukleotid_num.svg/1200px-Nukleotid_num.svg.png []
|
460
|
+
- Was für ein <one>Shuttle-System</one> kann <two>in Mitochondrien</two> gefunden werden? <one>Malat-Aspartat Shuttle</one>. URL: https://de.wikipedia.org/wiki/Malat-Aspartat-Shuttle []
|
461
|
+
- Die <one>kontraktile Einheit eines Muskels</one> besteht aus welchen <two>vier Komponenten</two>, <three>molekularbiologisch betrachtet</three>? (1) <one>Aktin</one> (2) <one>Myosin</one> (3) <one>Tropomyosin</one> (4) <one>Troponin</one> []
|
462
|
+
- Nenne ein Beispiel für ein <one>Ceramid</one>. A: <one>Sphingomyelin</one>. (Mnemonic: <two>M ... CeraMid ... SphingoMyelin</two>) URL: https://en.wikipedia.org/wiki/Sphingomyelin []
|
463
|
+
- <one>Wie</one> werden <two>Disaccharide</two> <three>gebildet</three>? Durch die <one>Verknüpfung</one> (<two>= eine glykosidische Bindung</two>) <three>zweier Monosaccharide</three>. []
|
464
|
+
- <one>Concanavalin A</one> <two>ist was für ein Typ</two>? <one>Concanavalin A</one> ist ein <two>Lektin</two>. URL: https://de.wikipedia.org/wiki/Concanavalin_A []
|
465
|
+
- Nenne <one>ein Beispiel</one> für eine <two>Omega-3-Fettsäure</two>. A: Die <one>Eicosapentaensäure</one> (<two>Ei-co-sa-penta-en-säure</two>). URL: https://de.wikipedia.org/wiki/Eicosapentaens%C3%A4ure []
|
466
|
+
- Nenne die <one>drei funktionellen Gruppen</one> der <two>Protocatechusäure</two>. A: (1) <one>-COOH</one> (2) <one>-OH</one> (3) <one>-OH</one> URL: https://de.wikipedia.org/wiki/Protocatechus%C3%A4ure []
|
467
|
+
- Name <one>a compound</one> that is very often used to <two>salt out</two> proteins. A: <one>Ammonium sulfate</one> <two>(NH₄)₂SO₄</two>. []
|
468
|
+
- Schlagwort zu <one>p21</one>? <one>Zellzyklus-Arrest</one>. URL: https://en.wikipedia.org/wiki/P21 []
|
469
|
+
- <one>Wo</one> wurden <two>Leukotriene</two> <three>erstmals entdeckt</three>? In den <one>Leukocyten</one>. URL: https://de.wikipedia.org/wiki/Leukotriene []
|
470
|
+
- <one>Kollagen</one> hat, <two>im menschlichen Organismus</two>, einen Anteil von n % an der <three>Gesamtproteinmenge</three>? Ungefähr <one>25%</one>. []
|
471
|
+
- Provide <one>one specific example</one> for a <two>glycerolipid</two>. A: <one>DAG</one>: <two>Diacylglycerol</two> URL: https://de.wikipedia.org/wiki/1,2-Diacylglycerine []
|
472
|
+
- Besitzen <one>bakterielle Zellwände</one> <two>Cholesterin</two>? <one>Nein</one>. []
|
473
|
+
- <one>ATP</one> besitzt wieviele <two>phosphoanhydride bonds</two>? <one>Zwei</one>. []
|
474
|
+
- <one>Myoglobin</one> besitzt <two>wieviele Alpha-Helices</two>? <one>8</one>. []
|
475
|
+
- <one>Gallensäuren</one> <two>gehören zu welcher Gruppe</two>? Zu der Gruppe der <one>Steroide</one>. URL: https://de.wikipedia.org/wiki/Gallens%C3%A4uren []
|
476
|
+
- Was macht die <one>Methionin-Aminopeptidase</one>? Dieses Enzym entfernt <one>entständiges, N-terminales Methionin</one> einer Polypeptidkette. URL: https://en.wikipedia.org/wiki/METAP2#Function []
|
477
|
+
- Wer ist der wichtigste <one>Überträger von Acylgruppen</one> in der Zelle? <one>Coenzym A</one>. []
|
478
|
+
- Nenne <one>zwei Enzyme</one>, die <two>Chitin abbauen</two>. A: (1) <one>Chitinase</one> (2) <one>Chitobiase</one> []
|
479
|
+
- <one>Fructose</one> <two>kommt natürlich in Zuckerpolymeren</two> <three>als ... vor</three>? <one>Furanose</one>. URL: https://en.wikipedia.org/wiki/Furanose []
|
480
|
+
- <one>Wo jeweils</one> kann <two>AMP</two> respektive <two>dAMP</two> <three>gefunden werden</three>? (1) <one>AMP</one>: in <two>RNA</two> (2) <one>dAMP</one>: in <two>DNA</two> []
|
481
|
+
- In the <one>liver</one>: <two>acetyl-CoA</two> <three>has to be converted to ... </three>? <one>Ketone bodies</one>. URL: https://en.wikipedia.org/wiki/Ketone_bodies []
|
482
|
+
- Wie werden <one>Codons</one> genannt, die <two>für die gleiche Aminosäure kodieren</two>? <one>Synonyme Codons</one>. URL: https://www.ncbi.nlm.nih.gov/pubmed/28292534 []
|
483
|
+
- Die <one>Geschwindigkeit einer enzymatischen Reaktion</one> <two>ist vor allem wovon abhängig</two>? Von der <one>Konzentration des Ausgangssubtrates</one>. []
|
484
|
+
- What does the abbreviation <one>HATs</one> stand for in Biochemistry/Gene Expression? <one>Histone acetyltransferases</one>. URL: https://en.wikipedia.org/wiki/Histone_acetyltransferase []
|
485
|
+
- Nenne ein Protein, das <one>an Akinfilamente bindet</one> und mit dem Buchstaben <two>N</two> beginnt. A: <one>Nebulin</one>. URL: https://en.wikipedia.org/wiki/Nebulin []
|
486
|
+
- Nenne <one>die drei wichtigsten Substanzen</one> die im <two>Salvage-Pathway</two> <three>entstehen können</three>. A: (1) <one>AMP</one> (2) <one>IMP</one> (3) <one>GMP</one> []
|
487
|
+
- Wie können wir <one>Zuckerreste</one> im Labor darstellen? Mit Hilfe der <one>Lektinfärbung</one>. []
|
488
|
+
- Bei <one>Troponin</one>, in der <two>Troponin I</two> Untereinheit: <three>was kann diese Untereinheit binden</three>? <one>Actin</one>. []
|
489
|
+
- <one>Welches</one> <two>Alkaloid</two> kann in <three>Betelpalmen-Nüssen</three> gefunden werden? <one>Arecolin</one>. URL: https://en.wikipedia.org/wiki/Arecoline []
|
490
|
+
- <one>TPP</one> (<two>Thiaminpyrophosphat</two>) <three>ist mit welchem Vitamin verwandt</three>? Mit <one>Vitamin B1</one>. URL: https://de.wikipedia.org/wiki/Thiaminpyrophosphat []
|
491
|
+
- <one>Where</one> could <two>4-hydroxyproline</two> <three>be found</three>? In <one>plant cell walls</one>. URL: https://en.wikipedia.org/wiki/Hydroxyproline#Plants []
|
492
|
+
- <one>What serves</one> as the <two>ATP-Buffer in muscle tissue</two>? (1) <one>creatine</one> (2) <one>creatine-phosphate</one> (both have a <two>high energy P-bond</two>.) []
|
493
|
+
- Nenne einen wichtigen Constraint der <one>Glykogensynthese</one>. A: Die <one>Glykogensynthese</one> erfordert einen <two>Primer</two> - eine <three>Polysaccharidkette</three>, mit mindestens vier Einheiten. []
|
494
|
+
- In Biochemistry: name <one>two major classes of proteins</one>. A: (1) <one>catalytic proteins</one> (2) <one>structural proteins</one> []
|
495
|
+
- <one>Calmodulin</one> <two>kann was genau binden</two>? <one>4x Ca²⁺</one>. []
|
496
|
+
- Was heißt <one>UDP-Glucose</one> ausgeschrieben? <one>Uridindiphosphatglucose</one>. URL: https://de.wikipedia.org/wiki/Uridindiphosphat []
|
497
|
+
- <one>Why</one> does <two>a human cell</two> require <three>carnitine</three>? <one>Carnitine</one> is used by the body to <two>transport fatty acids into the mitochondria</two>, <three>for subsequent breakdown</three>. []
|
498
|
+
- Das <one>Trisaccharid</one> <two>Raffinose</two> besteht aus <three>welchen drei Monosacchariden</three>? <one>GluFruGal</one> (Mnemonic: Raff... ff... die raffinierte Fructose) (1) <two>Glukose</two> (2) <two>Fructose</two> (3) <two>Galaktose</two> []
|
499
|
+
- Welche <one>Säure</one> wirkt gegen, respektive hilft bei der Vermeidung von <two>Skorbut</two>? Die <one>Ascorbinsäure</one>. URL: https://de.wikipedia.org/wiki/Ascorbins%C3%A4ure []
|
500
|
+
- <one>Wie</one> sind <two>die monomeren Bausteine in</two> <three>Cellulose</three> <four>verknüpft</four>? <one>Beta-1,4-glykosidisch</one>. URL: https://en.wikipedia.org/wiki/Cellulose []
|
501
|
+
- <one>Wozu</one> wird der <two>Lowry-Test</two> in der Biochemie <three>verwendet</three>? Zur <one>Protein-Konzentrations-Bestimmung</one>. URL: https://de.wikipedia.org/wiki/Lowry-Test []
|
502
|
+
- <one>Why</one> was the name <two>F1</two> given for the ATP Synthase? This is derived from <one>Fraction 1</one>. []
|
503
|
+
- Wird die <one>Carboxylierung von Acetyl-CoA</one> von einem <two>biotinhaltigem Enzym</two> <three>katalysiert</three>? <one>Ja</one>. []
|
504
|
+
- Wieviele <one>Fettsäuren</one> kann ein <two>Glycerin</two> <three>aufnehmen</three>? <one>3</one>. []
|
505
|
+
- <one>Glucuronsäure</one> <two>entsteht aus Glucose</two> <three>durch Oxidation an welchem C-Atom</three>? <one>C-Atom Position 6</one>. []
|
506
|
+
- Um Proteine zu fällen wird oft ein <one>Salz</one> verwendet. <two>Welches meistens</two>? <one>Ammoniumsulfat</one>. Summenformel: <two>(NH₄)₂SO₄</two> URL: https://de.wikipedia.org/wiki/Ammoniumsulfat []
|
507
|
+
- <one>Which two products</one> <two>are generated from</two> <three>Rubisco's Oxygenase</three> activity? (1) <one>2-phosphoglycolate</one> (2) <one>3-phosphoglycerate</one> URL: https://en.wikipedia.org/wiki/Photorespiration []
|
508
|
+
- Was genau machen die <one>Topoisomerasen</one>? Diese Enzyme verändern die <one>Topologie der DNA</one>. URL: https://de.wikipedia.org/wiki/Topoisomerase []
|
509
|
+
- Beim Abbau von <one>S-Adenosylmethionin</one> entsteht auch ... ? <one>Homocystein</one>. URL: https://de.wikipedia.org/wiki/S-Adenosylmethionin []
|
510
|
+
- How is the movement of <one>Myosin II molecules</one> called? <one>Power Stroke</one>. URL: https://pubmed.ncbi.nlm.nih.gov/11810692/ []
|
511
|
+
- <one>Eine eukaryote Zelle</one> <two>besitzt</two>, in etwa, <two>wieviele</two> <three>Proteasome</three>? Etwa <one>30.000</one>. []
|
512
|
+
- Bei der <one>spezifischen Säurekatalyse</one> <two>wird eine schwache Säure benötigt</two>? <one>Nein</one> - hier wird eine <two>starke Säure</two> benötigt. []
|
513
|
+
- In der Biochemie: <one>welche Substanz genau</one> wird <two>aktives Methyl</two> genannt? <one>S-Adenosyl-L-Methionin</one>. URL: https://en.wikipedia.org/wiki/S-Adenosyl_methionine []
|
514
|
+
- Besitzen <one>Ester</one> immer eine <two>-O-Brücke</two>? <one>Nein</one>. <two>Thioester</two> haben ein <three>-S- Atom</three> als Brücke. URL: https://de.wikipedia.org/wiki/Ester []
|
515
|
+
- <one>Woher</one> stammt der <two>Zucker</two>, <three>der am häufigsten in der Natur gefunden werden kann</three>? Dieser Zucker stammt <one>aus Pflanzen</one>. []
|
516
|
+
- <one>Andere Bezeichnung</one> für ein <two>Lineweaver Burk Diagramm</two>? <one>Doppeltreziprokes Diagramm</one>. []
|
517
|
+
- Sind <one>parallele</one> oder <one>antiparallele</one> <two>Beta-Faltblätter</two> <three>stabiler</three>? <one>Antiparallele</one>. []
|
518
|
+
- Nenne <one>drei verschiedene Vertreter</one> der <two>Glucane</two>. A: (1) <one>Stärke</one> (2) <one>Glykogen</one> (3) <one>Cellulose</one> []
|
519
|
+
- The <one>26S-Proteasom</one> contains the <two>20S core subunit</two>. <three>How many rings does this 20S core subunit have</three>? <one>4</one>. []
|
520
|
+
- <one>Troponin</one> <two>besteht aus</two> <three>wievielen Untereinheiten</three>? Aus <one>drei</one>. URL: https://de.wikipedia.org/wiki/Troponine []
|
521
|
+
- Nenne <one>zwei Aspekte</one>, bei denen <two>freie Radikale</two> <three>zum Einatz kommen</three> <four>im menschlichen Körper</four>. A: (1) im <one>Immunsystem</one> (2) zur <one>Regulation des Blutdruck</one> []
|
522
|
+
- In der Biochemie: nenne <one>ein Beispiel</one> für ein <two>Enolphosphat</two>. A: <one>PEP</one>: <two>Phosphoenolpyruvat</two> URL: https://en.wikipedia.org/wiki/Phosphoenolpyruvic_acid []
|
523
|
+
- <one>Wovon</one> hängt die <two>Halbwertszeit cytoplasmatischer Proteine</two> ab? Von der Aminosäure am <one>Aminoterminus</one> des Proteins. []
|
524
|
+
- Provide <one>an example for</one> a <two>protein storage function</two> <three>in the human body</three>. A: An example is <one>hemoglobin</one>, which can, effectively, <two>store oxygen in the blood</two>. URL: https://en.wikipedia.org/wiki/Hemoglobin []
|
525
|
+
- <one>In welchem Jahr</one> wurde das <two>Schlüssel-Schloss-Prinzip</two> <three>von Emil Fischer vorgeschlagen</three>? Im Jahre <one>1894</one>. URL: https://de.wikipedia.org/wiki/Schl%C3%BCssel-Schloss-Prinzip []
|
526
|
+
- Besitzt <one>Aktin</one> eine <two>ATPase-Aktivität</two>? <one>Ja</one>. []
|
527
|
+
- Allgemein verwenden <one>Carboxylasen</one> <two>welchen Cofaktor</two>? <one>Biotin</one> (auch <two>Vitamin H</two> genannt). []
|
528
|
+
- Define the term <one>Intein</one>. A: <one>Inteins</one> are <two>proteins</two> with a <three>self-splicing activity</three>. URL: https://en.wikipedia.org/wiki/Intein []
|
529
|
+
- Gibt es einen markanten <one>Unterschied</one> zwischen dem <two>26S-Proteasom</two> <three>in Eukaryoten und in Prokaryoten</three>? <one>Ja</one> - dem <two>prokaryotischen Proteasom fehlen die beiden 19S-Untereinheiten</two>. []
|
530
|
+
- Kommen <one>Zucker</one> in der <two>L-Form</two> vor? <one>Nein</one> - nur in der <two>D-Form</two>, im Gegensatz zu den Aminosäuren, die in L-Form vorkommen. []
|
531
|
+
- Nenne <one>drei verschiedene</one> <two>Rezeptor-Tyrosinkinasen Typen</two>. A: (1) <one>Insulinrezeptor-Typ</one> (2) <one>EGF-Rezeptor-Typ</one> (3) <one>NGF-Rezeptor-Typ</one> []
|
532
|
+
- <one>Wann</one> wurde die <two>Peptidbindung</two> in Proteinen <three>entdeckt</three>? Im Jahre <one>1902</one> (von <two>Emil Fischer</two>). []
|
533
|
+
- <one>EGF</one> ist <two>ein Vertreter der ...-Familie</two>? <one>Tyrosin-Kinase-Familie</one>. []
|
534
|
+
- The <one>Janus Kinases</one> <two>have which activity exactly</two>? <one>Janus Kinases</one> have a <two>tyrosine kinase activity</two>. URL: https://en.wikipedia.org/wiki/Janus_kinase []
|
535
|
+
- In <one>Glucosamin</one> können <two>wieviele N-Atome</two> gefunden werden? <one>1</one>. URL: https://de.wikipedia.org/wiki/Glucosamin []
|
536
|
+
- <one>Welcher Gerinnungsfaktor</one> ist jeweils bei <two>Hämophilie B</two> und bei <two>Hämophilie A</two> <three>defekt</three>? A: (1) <one>Hämophilie A</one>: Gerinnungsfaktor Faktor <two>VIII</two> (<peru>8</peru>) (2) <one>Hämophilie B</one>: Gerinnungsfaktor Faktor <two>IX</two> (<peru>9</peru>) []
|
537
|
+
- <one>Wofür</one> mag eine Zelle <two>Succinat</two> benötigen? Für die <one>Synthese von Porphyrinen</one>. URL: https://de.wikipedia.org/wiki/Succinate []
|
538
|
+
- Die <one>Transaminierung</one> erfolgt oft von <two>Alpha-Ketoglutarat</two> auf ...? <one>Glutamat</one>. []
|
539
|
+
- Nenne <one>ein Protein</one>, das als <two>Calcium-Sensor</two> fungieren kann. A: <one>Calmodulin</one>. URL: https://de.wikipedia.org/wiki/Calmodulin []
|
540
|
+
- Welche <one>drei Formen</one> kann die <two>ATP-Synthase</two> vorweisen? (1) <one>O-Form</one>: <two>O</two> für <three>Open</three> (2) <one>L-Form</one>: <two>L</two> für <three>Loose</three> (3) <one>T-Form</one>: <two>T</two> für <three>Tight</three> []
|
541
|
+
- Nenne einen künstlichen Elektronenazeptor der <one>NADP</one> ähnelt (die Abkürzung genügt). A: <one>DCPIP</one> (<two>2,6-Dichlorphenolindophenol</two>). URL: https://en.wikipedia.org/wiki/Dichlorophenolindophenol []
|
542
|
+
- <one>Welche grundlegende Aufgabe</one> haben die <two>triglycerides</two> in Tieren? Sie speichern Energie; also, also Aufgabe, die <one>Speicherung von Energie</one>. []
|
543
|
+
- <one>Nicotinamid dinucleotide</one> <two>ähnelt welchem DNA-Nukleotid</two>? <one>Adenin</one>. []
|
544
|
+
- What is the <one>deamination product</one> of <two>adenine</two>? <one>Hypoxanthine</one>. URL: https://en.wikipedia.org/wiki/Hypoxanthine []
|
545
|
+
- Nenne <one>ein Beispiel für Proteine</one>, die <two>nicht sequenzspezifisch an DNA binden können</two>. A: <one>Histone</one>. []
|
546
|
+
- <one>Unterschied</one> zwischen den <two>Monooxygenasen</two> und den <two>Dioxygenasen</two>? (1) <one>Monooxygenasen</one> übertragen nur <two>ein Sauerstoffmolekül</two> auf ein Substrat. (2) <one>Dioxygenasen</one> hingegen übertragen <two>beide Sauerstoffatome</two> auf ein Substrat. []
|
547
|
+
- Nenne ein Protein, das auf <one>mechanische Spannung</one> reagieren kann. A: Das Protein <one>Elastin</one>. URL: https://de.wikipedia.org/wiki/Elastin []
|
548
|
+
- <one>Wo</one> (mit <two>%</two>, in Summe also <two>100%</two>) findet die <three>Glukoneogenese</three> <four>im menschlichen Körper</four> statt? (1) <one>90%</one> <two>in der Leber</two> (2) <one>10%</one> <two>in der Nierenrinde</two> []
|
549
|
+
- Besitzen <one>Kollagenfasern</one> <two>eine größere Reißfestigkeit als</two> <three>Stahl</three>? <one>Ja</one>. []
|
550
|
+
- <one>Laktose</one> <two>besteht aus (genau)</two>? <one>D-Glukose</one> und <one>D-Galaktose</one>. []
|
551
|
+
- Nenne ein <one>biologisches Molekül</one> (ausser Aminosäuren) das ein <two>asymmetrisches center</two> besitzt. A: <one>Malat</one>, <two>ein C4-Körper</two>. URL: https://de.wikipedia.org/wiki/Malate []
|
552
|
+
- Weisen <one>Proteinkristalle</one> <two>biologische Aktivität</two> auf? <one>Ja</one>, <two>einige zumindest</two>. []
|
553
|
+
- <one>In welchen Komplexen der Atmungskette</one> werden <two>Protonen gepumpt</two>? In den Komplexen <one>I</one>, <one>III</one> und <one>IV</one> (<two>1,3,4</two>; <three>1,3,4-Pumper</three>). []
|
554
|
+
- In <one>which other protein</one> may we find <two>Phosphopantetheine</two>? <one>Phosphopantetheine</one> is <two>the essential prosthetic group of</two> the <three>acyl carrier protein</three> (<four>ACP</four>). URL: https://en.wikipedia.org/wiki/Acyl_carrier_protein []
|
555
|
+
- <one>Luciferase</one> <two>activity at ... nm</two>? <one>562 nm</one>. URL: https://de.wikipedia.org/wiki/Luciferasen []
|
556
|
+
- The <one>growing tip</one> <two>found in polypeptides</two> <three>is ...</three>? A: <one>NH₃⁺</one> (the amino group); within the cell this is <one>NH₃+</one>, thus positively charged. []
|
557
|
+
- <one>Wo</one>, zum Beispiel, kann <two>Desmosin</two> gefunden werden? <one>Desmosin</one> kann im <two>Faserprotein</two> <three>Elastin</three> gefunden werden. URL: https://de.wikipedia.org/wiki/Desmosin []
|
558
|
+
- <one>Essenzielle Aminosäuren</one> <two>sind vergleichbar mit</two> <three>welch anderer Substanzklasse, die für den Menschen wichtig ist</three>? <one>Vitaminen</one> - <two>diese müssen ebenso über die Nahrung aufgenommen werden, so wie auch essenzielle Aminosäuren</two>. []
|
559
|
+
- <one>Aus welchen Untereinheiten</one> besteht das <two>26S-Proteasom</two> <three>in Eukaryoten</three>? Aus einer <one>20S-Untereinheit</one> und zwei <one>19S-Untereinheiten</one>. Die 19S-Untereinheiten sind an den Enden befindlich. URL: https://en.wikipedia.org/wiki/Proteasome []
|
560
|
+
- How can <one>phosphate</one> be <two>chemically bonded to organic compounds</two>? (1) by <one>ester bonds</one> (2) by <one>anhydride bonds</one> []
|
561
|
+
- <one>Pyridoxalphosphat</one> ist <two>die aktive Form welchen Vitamins</two>? <one>Vitamin B6</one>. URL: https://en.wikipedia.org/wiki/Vitamin_B6 []
|
562
|
+
- <one>Aminozucker</one> besitzen <two>... anstelle von Hydroxylgruppen</two>. A: <one>Aminogruppen</one>. []
|
563
|
+
- Die <one>Cytochrome</one> sind <two>Proteine</two>, die <three>was genau in ihrem Zentrum besitzen</three>? Ein <one>Eisen (Fe) Atom</one>. Cytochrome besitzen eine <two>Häm-Gruppe</two>. URL: https://de.wikipedia.org/wiki/Cytochrome []
|
564
|
+
- Nenne <one>zwei Formen</one> der <two>Lyse von Zellen</two> im Labor. A: (1) <one>mechanisch</one> (2) <one>enzymatisch</one> []
|
565
|
+
- The <one>F1 portion</one> of the <two>ATP synthase</two> <three>is located where</three>? It is <one>inside the matrix</one> <two>of the mitochondria</two>. []
|
566
|
+
- The <one>biosynthesis of IMP</one> <two>requires n steps</two>? <one>11</one>. []
|
567
|
+
- <one>Welche Person</one> stellte im Jahre <two>1930</two> die <three>Theorie des Übergangszustandes</three> auf? <one>Henry Eyring</one>. URL: https://en.wikipedia.org/wiki/Henry_Eyring_(chemist) []
|
568
|
+
- <one>Wie viele Moleküle aktivierter Essigsäure</one> sind zur <two>Bildung von einem Molekül aktiven Isoprens</two> erforderlich? <one>3</one>. (Merkhilfe: Isopren hat 5 C-Atome; Essigsäure hat 2 C-Atome). []
|
569
|
+
- What is <one>HUPO</one>? The <one>Human Proteome Organization</one>. URL: https://en.wikipedia.org/wiki/Human_Proteome_Organization []
|
570
|
+
- <one>Wo</one> im <two>Ramachandran-Diagramm</two> können <three>Beta-Stränge</three> gefunden werden? <one>Links oben</one>, <two>zwischen +110 und +180</two>. []
|
571
|
+
- <one>When</one> were <two>amines</two> discovered (+/- 5 years approximation is sufficient)? In the year <one>1849</one>. URL: https://en.wikipedia.org/wiki/Amine []
|
572
|
+
- <one>Hydrophobic surfaces</one> <two>exclude ... </two>? <one>Water</one>. []
|
573
|
+
- <one>Fuel gauge</one> <two>for the cell</two>? <one>AMPK</one>. URL: https://en.wikipedia.org/wiki/AMP-activated_protein_kinase []
|
574
|
+
- Was genau ist ein <one>Peptidhormon</one>? Dies ist <one>ein Hormon</one>, das <two>chemisch betrachtet ein Peptid ist</two>, welches aus mehreren (<three>3-191</three>) Aminosäuren aufgebaut ist. []
|
575
|
+
- Ist <one>Pyruvat</one> eine <two>Alpha-Ketocarbonsäure</two>? <one>Ja</one>. []
|
576
|
+
- Aus der <one>Arachidonsäure</one> <two>werden welche Botenstoffe gebildet</two>? Zum Beispiel die <one>Eikosanoide</one> (<two>Arachidonsäure → Eikosanoide</two>). URL: https://de.wikipedia.org/wiki/Eicosanoide []
|
577
|
+
- Ursache für <one>Albinismus</one>? <one>Ausfall</one> - <two>beziehungsweise ein Mangel</two> - des <three>Enzyms</three> <four>Tyrosinase</four>. URL: https://en.wikipedia.org/wiki/Tyrosinase []
|
578
|
+
- Name a <one>classical respiratory chain inhibitor</one> that is very well known. A: <one>Cyanide</one>. URL: https://en.wikipedia.org/wiki/Cyanide []
|
579
|
+
- <one>Protamine</one> sind <two>stark basisch</two> <three>oder</three> <two>stark saure Proteine</two>? <one>Protamine</one> sind <two>stark basische Proteine</two>. URL: https://en.wikipedia.org/wiki/Protamine []
|
580
|
+
- Im <one>menschlichen Körper</one>: <two>wann</two> ist die <three>Lactat-Dehydrogenase</three> besonders wichtig? Bei <one>limitierter Sauerstoffverfügbarkeit</one>. URL: https://de.wikipedia.org/wiki/L-Lactatdehydrogenase []
|
581
|
+
- Nenne ein wichtiges Beispiel für <one>Epimer</one>. A: <one>Glucose</one> und <one>Galactose</one>, welche sich nur an <one>Carbon 4</one> (<three>C4</three>) unterscheiden. URL: https://en.wikipedia.org/wiki/Epimer []
|
582
|
+
- The <one>ribonucleotide reductase</one> of E. coli, but also mammals, <two>contains which metal in its center</two>? <one>Iron</one> (di-iron center). []
|
583
|
+
- Wo mag <one>Myosin II</one> gefunden werden? In der <one>Skelettmuskulatur</one>. URL: https://en.wikipedia.org/wiki/Myosin#Myosin_II []
|
584
|
+
- Das <one>SDS-Molekül</one> besitzt <two>n C Atome</two> <three>in seinem Schwanzteil</three>? <one>12</one>. URL: https://en.wikipedia.org/wiki/Sodium_dodecyl_sulfate []
|
585
|
+
- Wird <one>Saccharin</one> <two>im menschlichen Körper</two> <three>metabolisiert</three>? <one>Nein</one>. []
|
586
|
+
- <one>Welche Proteingruppe</one> verrichtet <two>Arbeit</two>? <one>Motorproteine</one>. URL: https://de.wikipedia.org/wiki/Motorprotein []
|
587
|
+
- <one>Proteases</one> are <two>typically grouped into</two> <three>four major classes</three>, <four>based on their active site residues</four>. <five>Name them</five>. A: <one>Mnemonic: MASC them!</one> (1) <two>m</two><three>etalloproteases</three> (2) <two>a</two><three>spartic proteases</three> (3) <two>s</two><three>erine proteases</three> (4) <two>c</two><three>ysteine proteases</three> []
|
588
|
+
- Die <one>Chitobiose</one> ist ein <two>Monosaccharid</two>, <two>Disaccharid</two> oder <two>Trisaccharid</two>? Die <one>Chitobiose</one> ist ein <two>Disaccharid</two>. []
|
589
|
+
- Nenne <one>ein Beispiel</one> für einen <two>aktivierten Glucosedonor</two>. A: Die <one>UDP-Glucose</one>. URL: https://de.wikipedia.org/wiki/UDP-Glucose []
|
590
|
+
- Bei der <one>Phospholipiddoppelschicht</one> gibt es <two>Transversaldiffusion</two> und <two>Lateraldiffusion</two>. <three>Wie unterscheiden sich die beiden voneinander, qualitativ betrachtet</three>? (1) Die <one>Transversaldiffusion</one> ist sehr <two>langsam</two>. (2) Die <one>Lateraldiffusion</one> hingegen ist eher <two>schnell</two>. []
|
591
|
+
- <one>Wofür genau</one> steht die Abkürzung <two>RuBisCO</two>? <one>Ribulose-1,5-bisphosphate carboxylase</one>/<one>oxygenase</one>. URL: https://de.wikipedia.org/wiki/RuBisCO []
|
592
|
+
- Die <one>Nucleophilie einer Substanz</one> <two>hängt eng ... womit zusammen</two>? Mit ihrer <one>Basizität</one>. URL: https://de.wikipedia.org/wiki/Basizit%C3%A4t []
|
593
|
+
- <one>Womit</one> kann <two>ein Enzym</two> <three>gesättigt</three> werden? Mit <one>seinem Substrat</one>. []
|
594
|
+
- <one>Pyruvat</one> kann in <one>Lactat</one> konvertiert werden über das Enzym <two>Lactat-Dehydrogenase</two>. <three>Welches Molekül wird hier noch gebraucht</three>? <one>NADH</one>. URL: https://de.wikipedia.org/wiki/L-Lactatdehydrogenase []
|
595
|
+
- <one>Wie</one> wird der <two>organische Bestandteil der Hämgruppe</two> genannt? <one>Protoporphyrin</one>. URL: https://en.wikipedia.org/wiki/Protoporphyrin_IX []
|
596
|
+
- Nenne <one>drei Disacharide</one>. A: (<one>L,M,S</one>) <one>Laktose</one>, <one>Maltose</one>, <one>Saccharose</one>. []
|
597
|
+
- Nenne <one>ein Antibiotikum</one>, das einen <two>Pseudoaminosäurearm</two> besitzt. A: Das <one>Puromycin</one>. URL: https://de.wikipedia.org/wiki/Puromycin []
|
598
|
+
- Was haben <one>Biotin</one> und <one>RUBISCO</one> <two>gemeinsam</two>? Beide können <one>CO₂</one> binden. []
|
599
|
+
- <one>Wo</one> <two>im menschlichen Körper</two> kann besonders viel des Enzyms <three>Glucokinase</three> gefunden werden? In der <one>Leber</one>. []
|
600
|
+
- Nenne eine <one>ER-Retensionssequenz</one>. A: <one>KDEL</one>. []
|
601
|
+
- <one>Englische Bezeichnung</one> für die <two>Gallensäuren</two>? <one>Bile acids</one>. URL: https://en.wikipedia.org/wiki/Bile_acid []
|
602
|
+
- Das <one>Gegenteil</one> einer <two>Azidose</two> ist ... ? Die <one>Alkalose</one>. URL: https://de.wikipedia.org/wiki/Alkalose []
|
603
|
+
- Was ist <one>die Hauptkomponente von biologischen Zellen</one>? <one>Wasser</one>. []
|
604
|
+
- <one>Wo</one> im menschlichen Körper könnte <two>5-Hydroxylysin</two> gefunden werden? Zum Beispiel <one>in Kollagen</one>. URL: https://de.wikipedia.org/wiki/Kollagene []
|
605
|
+
- The protein <one>Fos</one> <two>usually binds to ... </two>? The protein <one>Jun</one>. URL: https://en.wikipedia.org/wiki/C-jun []
|
606
|
+
- What was <one>the first discovered epigenetic mark</one>? <one>DNA methylation</one>. URL: https://en.wikipedia.org/wiki/DNA_methylation []
|
607
|
+
- Ein <one>Hemiacetal</one>, <two>als funktionelle Gruppe</two>, besitzt <three>wieviele Sauerstoff-Atome</three>? <one>2</one>. []
|
608
|
+
- Gegeben sei ein Protein mit <one>9 Lysinresten</one> und <one>7 Argininresten</one>. <two>Was passiert wenn wir dieses Protein mit</two> <three>Trypsin</three> <two>behandeln</two>? Man erhält so höchstwahrscheinlich <one>17 Peptidfragmente</one>. []
|
609
|
+
- The enzyme <one>Lactate Dehydrogenase</one> contains a <two>binding domain</two>. <three>What can this domain bind</three>? <one>NAD⁺</one>. URL: https://en.wikipedia.org/wiki/Lactate_dehydrogenase []
|
610
|
+
- Nenne eine besondere Eigenschaft der <one>Beta-Galactosidase</one>. A: Die <one>Alpha-Komplementation</one>. Diese stellt die Basis für das <two>blue</two>/<two>white screening</two> von <three>pUC Vektoren</three> dar. []
|
611
|
+
- Eine <one>Carboxamidgruppe</one> <two>besteht aus welchen Komponenten</two>? A: <one>-C=O-NH₂</one>. URL: https://de.qwe.wiki/wiki/Carboxamide []
|
612
|
+
- Was genau bedeutet <one>Desoxymyoglobin</one> in der Biochemie? Dies ist <one>Myoglobin</one> <two>an dem kein molekular Sauerstoff gebunden ist</two>. []
|
613
|
+
- Der <one>oxidative Ligninabbau</one> <two>benötigt was</two>? <one>H₂O₂</one>. URL: https://de.wikipedia.org/wiki/Wasserstoffperoxid []
|
614
|
+
- Nenne <one>zwei Beispiele</one> für <two>Homopolysaccharide</two>. A: (1) <one>Cellulose</one> (2) <one>Glykogen</one> []
|
615
|
+
- Bei den <one>Monosacchariden</one>, also bei den Einfachzuckern: wie nennen wir das <two>C1 Atom</two> noch? <one>Aldehydgruppe</one>. URL: https://de.wikipedia.org/wiki/Aldehyde []
|
616
|
+
- Es gibt ein Enzym namens <one>DNMT3a</one>/<one>3b</one>. Wieso <two>3a</two> und <two>3b</two> im Namen? Es handelt sich um ein <one>Isoenzym</one>. URL: https://de.wikipedia.org/wiki/Isoenzym []
|
617
|
+
- <one>Welche Gruppe</one> kann bei den <two>Thiolen</two> gefunden werden? Eine <one>Sulfhydrylgruppe</one>. URL: https://de.wikipedia.org/wiki/Thiole []
|
618
|
+
- Die <one>Hexokinase</one> <two>wird innerhalb der Zelle</two> <three>wodurch inhibiert</three>? Durch einen <two>Überschuss ihres Produktes</two>: <one>Glucose-6-phosphat</one>. URL: https://de.wikipedia.org/wiki/Hexokinase []
|
619
|
+
- Nenne einen <one>Hemmstoff von Biotin</one>. A: <one>Avidin</one>. URL: https://de.wikipedia.org/wiki/Avidin []
|
620
|
+
- Die Substanzen <one>Kreatinphosphat</one>, <one>Phosphoenolpyruvat</one> und <one>Carbamoylphosphat</one> haben alle <two>mehr Energie gespeichert als ATP</two>. Welche dieser drei Substanzen hat mit <three>-62.0</three> kJ/mol die <four>meiste innere Energie</four>? <one>Phosphoenolpyruvat</one> (<two>PEP</two>). []
|
621
|
+
- Was für eine Domäne enthält <one>Irisin</one>? <one>Irisin</one> enthält eine <two>Fibronectin III Domäne</two>. URL: https://de.wikipedia.org/wiki/Irisin []
|
622
|
+
- Was ist das <one>Protein der Haare</one>? <one>Keratin</one> (auch <two>α-keratin</two> in Säugetieren genannt). URL: https://en.wikipedia.org/wiki/Keratin []
|
623
|
+
- <one>Wann</one> ist ein Protein <two>am schlechtesten löslich</two>? Wenn es an seinem <one>isoelektrischen Punkt</one> vorliegt. []
|
624
|
+
- Nenne <one>ein Beispiel</one> für eine <two>energiearme Säureamidbindung</two> aus dem Bereich der Biochemie. A: Die <one>Peptidbindung</one>. URL: https://de.wikipedia.org/wiki/Peptidbindung []
|
625
|
+
- <one>Wo genau</one> werden <two>Ketonkörper</two> produziert? In den <one>Mitochondrien der Leberzellen</one>. URL: https://de.wikipedia.org/wiki/Ketok%C3%B6rper []
|
626
|
+
- <one>Einfache Vergiftung</one> von <two>freiem Häm</two> durch ...? Durch <one>CO</one> (<two>Kohlenmonoxid</two>). URL: https://de.wikipedia.org/wiki/Kohlenmonoxid []
|
627
|
+
- Wie geht die <one>Gibbs-Helmholtz-Gleichung</one>? <one>Delta G = Delta H - T * Delta S</one>. <two>T bezeichnet hierbei die Temperatur</two>. URL: https://en.wikipedia.org/wiki/Gibbs%E2%80%93Helmholtz_equation []
|
628
|
+
- <one>Andere Bezeichnung</one> für <two>Detergenzien</two>? <one>Oberflächenaktive Substanzen</one>. []
|
629
|
+
- Nenne <one>zwei verschiedene Enzyme</one> die <two>RNA-Primer</two> <three>entfernen können</three>. A: (1) <one>DNA-Polymerase I</one> (2) <one>RNase H</one> []
|
630
|
+
- <one>Welche Proteine</one> bestehen vor allem aus <two>Beta-Faltblatt Motiven</two>? A: <one>Fettsäurebindende Proteine</one>. []
|
631
|
+
- Das <one>Schlüsselenzym</one> bei <two>der Kontrolle des Stickstoffs in der Zelle</two> ist ... ? Die <one>Glutamin-Synthetase</one> ist das Schlüsselenzym. URL: https://en.wikipedia.org/wiki/Glutamine_synthetase []
|
632
|
+
- <one>Welche</one> <two>zwei Typen an Cofaktoren</two> existieren? (1) <one>Essenzielle Ionen</one> (2) <one>Coenzyme</one> []
|
633
|
+
- Another, prettier name for <one>NAD</one>? The <one>principle soluble carrier of reduction equivalents</one>. []
|
634
|
+
- <one>Wirkung von</one> <two>Leu-Enkephalin</two> auf den menschlichen Körper? <one>Schmerzlindernd</one> - <two>Leu-Enkephalin</two> ist ein <three>endogenes Opiat</three>. URL: https://en.wikipedia.org/wiki/Leu-enkephalin []
|
635
|
+
- Was findet man vor allem im <one>braunen Fettgewebe</one> vor allem (<two>zellulär betrachtet</two>)? Viele <one>Mitochondrien</one>. []
|
636
|
+
- <one>Kondensation</one> versus <one>Hydrolyse</one>. <two>Welcher dieser beiden Prozesse verliert Wasser</two>? Die <one>Kondensationsreaktion</one> <two>verliert pro Schritt jeweils ein Wassermolekül</two>. []
|
637
|
+
- <one>Inosine</one> <two>can pair with ...</two>? (1) <one>U</one> (2) <one>C</one> (3) <one>A</one> []
|
638
|
+
- <one>Alpha-Ketoglutarat</one> besitzt <two>wieviele C Atome</two>? <one>5</one>. URL: https://de.wikipedia.org/wiki/%CE%91-Ketoglutars%C3%A4ure []
|
639
|
+
- <one>Welchen Alkohol</one> finden wir in <two>Riboflavin</two> und <three>wieviele C Atome hat dieser Alkohol</three>? Den <one>C5-Alkohol</one> <two>Ribitol</two>. URL: https://de.wikipedia.org/wiki/Ribit []
|
640
|
+
- Nenne <one>zwei</one> <two>Macrolid-Vertreter</two>. A: (1) <one>Erythromycin</one> (2) <one>Zithromax</one> []
|
641
|
+
- Wird <one>Stärke</one> zu <two>Disaccharid</two> <three>abgebaut</three>, <four>entsteht ... </four>? A: <one>Maltose</one> <two>+</two> <one>Isomaltose</one>. []
|
642
|
+
- Nenne <one>ein Beispiel für ein</one> <two>GPI-verankertes Protein</two>. A: Die <one>Acetylcholinesterase</one>. URL: https://de.wikipedia.org/wiki/Acetylcholinesterase []
|
643
|
+
- Was machen die <one>Decarboxylasen</one>? <one>Decarboxylasen</one> sind Enzyme, die -COOH abbauen können und dabei <two>die Abspaltung von CO₂ katalysieren können</two>. CO₂ ist somit ein <three>Endprodukt</three> dabei. URL: https://de.wikipedia.org/wiki/Decarboxylasen []
|
644
|
+
- Give another word for a <one>Riboflavin group</one>. A: <one>Vitamin B2</one> group. URL: https://en.wikipedia.org/wiki/Riboflavin []
|
645
|
+
- Ein <one>biologischer Stoffwechselweg</one> ist <two>womit in der Chemie äquivalent</two>? Mit einem <one>Syntheseweg</one> <two>in der organischen Chemie</two>. []
|
646
|
+
- Was wird umgangssprachlich mit <one>Acyl-tRNA</one> gemeint? Dies bezeichnet eine <one>mit einer Aminosäure beladene tRNA</one>. []
|
647
|
+
- Andere Bezeichnung für <one>Phosphatidylcholin</one>? <one>Lecithin</one>. URL: https://de.wikipedia.org/wiki/Lecithine []
|
648
|
+
- <one>Energiegewinn</one> <two>pro Mol ATP</two>? <one>30.5 kJ</one> / <one>mol ATP</one>. []
|
649
|
+
- What is the <one>C range</one> for <two>fatty acids</two> (<three>min-max</three>)? <one>4-36</one>. URL: https://en.wikipedia.org/wiki/Fatty_acid []
|
650
|
+
- <one>NAD</one> leitet sich aus welchem <two>Vitamin</two> heraus ab? <one>Niacin</one>. (Anmerkung: Der Mensch kann NAD aber auch aus dem Tryptophan-Abbauprodukt <two>Chinolinsäure</two> herstellen.) URL: https://de.wikipedia.org/wiki/Niacin []
|
651
|
+
- Nenne <one>ein Beispiel</one> für ein <two>mitochondriales Transmembranprotein</two>. A: <one>Porin</one>. URL: https://en.wikipedia.org/wiki/Porin_(protein) []
|
652
|
+
- <one>Mannose</one> <two>besitzt n Sauerstoff-Atome</two>? <one>6</one>; <two>Mannose besitzt auch 6 C-Atome</two>. URL: https://de.wikipedia.org/wiki/Mannose []
|
653
|
+
- <one>Andere Bezeichnung</one> <two>für die</two> <three>ATPase</three>? <one>Complex V</one>. URL: https://en.wikipedia.org/wiki/ATP_synthase []
|
654
|
+
- Die <one>Serin-Hydroxymethyltransferase</one> konvertiert <two>Serin</two> zu ... ? Zu <two>Glycin</two> (<one>Serin → Glycin</one>). URL: https://en.wikipedia.org/wiki/Serine_hydroxymethyltransferase []
|
655
|
+
- <one>Andere Bezeichnung für</one> die <two>Proteases</two>? <one>Proteinases</one>. URL: https://en.wikipedia.org/wiki/Protease []
|
656
|
+
- <one>Citric acid</one> <two>contains</two> <three>how many carboxylic acid groups</three>? <one>3</one>. URL: https://en.wikipedia.org/wiki/Citric_acid []
|
657
|
+
- <one>Wann</one> mag es zu einer <two>vermehrten Sekretion von Wachstumshormonen</two> kommen? Bei manchen <one>Tumoren der Hypophyse</one>. URL: https://www.neurochirurgie-tuebingen.de/de/spezialgebiete/hypophysenchirurgie/tumoren-der-hypophyse/ []
|
658
|
+
- Nenne <one>ein natürlich vorkommendes Disaccharid</one> das auf einer Verknüpfung von zwei <two>N-Acetylglucosamin-Molekülen</two> aufgebaut ist. A: Die <one>Chitobiose</one>. URL: https://en.wikipedia.org/wiki/Chitobiose []
|
659
|
+
- <one>Wo</one> in einer eukaroyten Zelle mag <two>3-Methylhistidin</two> gefunden werden? In <one>Histonen</one>. URL: https://en.wikipedia.org/wiki/3-Methylhistidine []
|
660
|
+
- Es gibt den sogenannten <one>GPI-Anker</one> in der Biochemie / Zellbiologie. Wofür steht die Abkürzung <two>GPI</two>? <one>Glykosyl</one>-<one>phosphatidyl</one>-<one>inositol</one>-<two>Anker</two>. URL: https://de.wikipedia.org/wiki/GPI-Anker []
|
661
|
+
- Wie sieht eine <one>Carboxygruppe</one> genau aus (zeichne sie gedanklich)? <one>-C=O</one> und <one>-OH</one>. URL: https://de.wikipedia.org/wiki/Carboxygruppe []
|
662
|
+
- Andere Bezeichnung für ein <one>Glycosid</one>? <one>Zuckeracetal</one>. URL: https://de.wikipedia.org/wiki/Halbacetale []
|
663
|
+
- <one>Upon formation of a disaccharide</one>, <two>what exactly is lost in this process</two>? One <one>H₂O molecule</one>. []
|
664
|
+
- Was erzeugt der <one>Pyruvat-Dehydrogenase-Komplex</one>? <one>Acetyl-CoA</one>. URL: https://de.wikipedia.org/wiki/Pyruvatdehydrogenase-Komplex []
|
665
|
+
- Nenne jeweils <one>ein Beispiel für</one> eine <two>Aldohexose</two> und eine <two>Ketohexose</two>. A: (1) <one>Glucose</one> ist eine <two>Aldohexose</two>. (2) <one>Fruktose</one> ist eine <two>Ketohexose</two>. []
|
666
|
+
- Was ist jeweils <one>Oxymyoglobin</one> und <one>Desoxymyoglobin</one>? (1) <one>Oxymyoglobin</one>: dies ist <two>Myoglobin mit gebundenem Sauerstoff</two> (2) <one>Desoxymyoglobin</one>: <two>Myoglobin ohne gebundenen Sauerstoff</two> []
|
667
|
+
- <one>Wann</one> vor allem <two>bildet der menschliche Körper</two> <three>Ketonkörper</three>? Bei einem <one>länger anhaltenden Nahrungsmangel</one> (<two>Fasten</two>). []
|
668
|
+
- Was genau muss mit <one>Adenin</one> geschehen damit wir <one>Inosin</one> erhalten? Das <one>C6 Atom</one> von <two>Adenin</two> muss <three>desaminiert</three> werden. []
|
669
|
+
- Was sind <one>Elaioplasten</one>? <one>Pflanzliche Speicherorganellen</one> für <two>Öl</two>. URL: https://en.wikipedia.org/wiki/Elaioplast []
|
670
|
+
- Warum sind die <one>Vitamine D</one> eigentlich <two>keine echten Vitamine</two>? Da sie <one>im menschlichen Organismus</one> <two>vollständig synthetisiert werden können</two>. []
|
671
|
+
- Die <one>Steroide</one> <two>leiten sich wovon ab</two>? Von den <one>Sterinen</one>. URL: https://de.wikipedia.org/wiki/Sterine []
|
672
|
+
- <one>Imidazol</one> besitzt <two>wieviele N-Atome</two>? <one>2</one>. URL: https://www2.chemie.uni-erlangen.de/projects/vsc/chemie-mediziner-neu/heterocyclen/bilder/imidazol.gif []
|
673
|
+
- <one>Oligosaccharidreste</one> <two>können posttranslational angeheftet werden</two>. <three>Welche und wie</three>? (1) <one>N-Glykosidisch</one> auf <two>Asparagin</two> (2) <one>O-Glykosidisch</one> auf <two>Serin</two> oder <two>Threonin</two> []
|
674
|
+
- Die meisten <one>Doppelbindungen</one> sind in <two>cis</two> oder in <two>trans</two> Form? A: <one>cis</one>. []
|
675
|
+
- Wofür steht die Abkürzung <one>T-Tubuli</one>? <one>Transverale Tubuli</one>. URL: https://flexikon.doccheck.com/de/Transversaltubulus []
|
676
|
+
- <one>Andere Bezeichnung für</one> <two>Serotonin</two>? A: <one>5-Hydroxytryptamine</one>. URL: https://en.wikipedia.org/wiki/Serotonin []
|
677
|
+
- <one>Wo</one> kann die Substanz <two>Ornithin</two> gefunden werden, <three>zwecks physischer Isolierung</three>? <one>Ornithin</one> ist ein <two>Ausscheidungsprodukt von Vögeln</two> - somit finden wir dies dort. []
|
678
|
+
- In Biochemistry: <one>psi bonds</one> <two>can be seen where</two>? <one>C-C</one><two>-PSI</two> (Mnemo: <three>See-See-Psi</three>). []
|
679
|
+
- <one>Normal hemoglobin</one> <two>will last</two> <three>n days</three>? <one>120 days</one>. []
|
680
|
+
- Wofür steht die Abkürzung <one>AMPK</one> in der Biochemie? <one>AMP-aktivierte Proteinkinase</one>. URL: https://de.wikipedia.org/wiki/AMP-aktivierte_Proteinkinase []
|
681
|
+
- Die <one>Cohn-Fraktionierung</one> setzt für die <two>fraktionierte Ausfällung</two> <three>welche Substanz ein</three>? <one>Ethanol</one>. URL: https://www.spektrum.de/lexikon/biologie/cohn-fraktionierung/14814 []
|
682
|
+
- <one>Welches</one> <two>biogene Amin</two> <three>mag stark toxisch wirken</three>? <one>Histamin</one>. URL: https://de.wikipedia.org/wiki/Histamin []
|
683
|
+
- Die <one>Übertragung einer Aminogruppe</one> von einer <two>Aminosäure</two> auf eine <two>Ketosäure</two> heißt ... ? <one>Transaminierung</one>. URL: https://de.wikipedia.org/wiki/Transaminierung []
|
684
|
+
- <one>Welche Substanz</one> kann leicht in <two>Citronensäure</two> umgewandelt werden? <one>Calciumcitrat</one> (<two>Calciumcitrat</two> → <two>Citronensäure</two>; Mnemonic: 2x C). []
|
685
|
+
- Der <one>Mensch</one> <two>verbraucht am Tag</two> wieviel <three>ATP</three>? <one>50 kg ATP</one>. []
|
686
|
+
- In short: <one>how</one> to <two>create a</two> <three>toxoid</three>? Treat a <one>toxin</one> with <one>formaldehyde</one>. URL: https://en.wikipedia.org/wiki/Toxoid []
|
687
|
+
- <one>Welchen eigentlichen Zweck</one> erfüllt <two>Urin</two> im menschlichen Körper? <one>Ausscheiden von Stickstoff</one>. URL: https://de.wikipedia.org/wiki/Urin#Entstehung []
|
688
|
+
- <one>Histamin</one> <two>wird gemeinsam mit ...</two> <three>gespeichert</three>? Mit <one>Heparin</one>. (Mnemonic: H...H <two>Histamin-Heparin</two>) []
|
689
|
+
- Die <one>Saccharose</one> <two>kann gespalten werden in</two> <three>welche Einfachzucker</three>? (1) <one>Glucose</one> (2) <one>Fruktose</one> []
|
690
|
+
- In der Biochemie: <one>Natriumlaurylsulfat</one> <two>ähnelt welch anderer Substanz</two>? <one>SDS</one>: <one>Sodium dodecyl sulfate</one>. URL: https://en.wikipedia.org/wiki/Sodium_dodecyl_sulfate []
|
691
|
+
- Sollte eher das Wort <one>Glycerin</one> oder eher das Wort <one>Glycerol</one> verwendet werden? (1) Im Englischen <one>Glycerol</one>. (2) Im Deutschen <one>Glycerin</one>. URL: https://en.wikipedia.org/wiki/Glycerol []
|
692
|
+
- <one>Andere Bezeichnung</one> für <two>aktivierte Essigsäure</two>? <one>Acetyl-Coenzym A</one>. URL: https://en.wikipedia.org/wiki/Acetyl-CoA []
|
693
|
+
- Name <one>a major protein</one> produced by the silkworm <two>Bombyx mori</two>. A: The <one>Fibroin polypeptide</one>. URL: https://de.wikipedia.org/wiki/Fibroin []
|
694
|
+
- <one>Fumarat</one> und <one>Malat</one>. Welches davon ist <two>cis</two>, welches davon ist <two>trans</two>? (1) <one>Malat</one> ist <two>cis</two>. (2) <one>Fumarat</one> ist <two>trans</two>. []
|
695
|
+
- <one>ATP</one> <two>komplexiert mit ...</two>? <one>Divalenten Kationen</one>, wie <two>Mg²⁺</two> oder <two>Mn²⁺</two>. URL: https://en.wikipedia.org/wiki/Adenosine_triphosphate#Binding_of_metal_cations_to_ATP []
|
696
|
+
- Die <one>Prolyl-Hydroxylase</one> <two>benötigt ...</two> <three>zur Regeneration</three>. A: <one>Vitamin C</one> (<two>Ascorbinsäure</two>). URL: https://de.wikipedia.org/wiki/Prolyl-4-Hydroxylase []
|
697
|
+
- <one>Cathin</one> <two>ist verwandt mit ...</two>? <one>Serotonin</one>. URL: https://de.wikipedia.org/wiki/Cathin []
|
698
|
+
- Die <one>Cellobiohydrolase I</one> besitzt einen <two>CBD Teil</two>. <three>Was heißt CBD</three>? <one>Cellulose Binding Domain</one>. URL: https://en.wikipedia.org/wiki/Carbohydrate-binding_module []
|
699
|
+
- Länge von <one>Kollagen</one>, <two>in nm</two>? <one>300 nm</one>. URL: https://de.wikipedia.org/wiki/Kollagene []
|
700
|
+
- Was macht die <one>Phenylalanin-Hydroxylase</one>? <one>F→Y</one>. Die <two>Phenylalanin-Hydroxylase</two> konvertiert effektiv <three>Phenylalanin</three> (<four>F</four>) zu <three>Tyrosin</three> (<four>Y</four>). URL: https://en.wikipedia.org/wiki/Phenylalanine_hydroxylase []
|
701
|
+
- Nenne <one>zwei Beispiele</one> für <two>Steroidherzglycoside</two>. A: (1) <one>Digoxin</one> (2) <one>Digitoxin</one> []
|
702
|
+
- <one>Zwei Thiolgruppen</one> können was ...? A: Eine <one>Disulfidbrücke</one> <two>ausbilden</two>. []
|
703
|
+
- <one>Wyosine</one>, das <two>in der tRNA vorkommen kann</two>, <three>ähnelt welcher Base</three>? <one>Guanosine</one>. URL: https://de.wikipedia.org/wiki/Wyosin []
|
704
|
+
- <one>Warum</one> müssen Menschen <two>Folsäure</two> <three>mit der Nahrung aufnehmen</three>? Da Menschen das <one>PABA Zwischenprodukt</one> <two>nicht synthetisieren können</two>. []
|
705
|
+
- <one>Inosin</one> <two>entsteht aus ... </two>? <one>Hypoxanthin</one>. URL: https://de.wikipedia.org/wiki/Hypoxanthin []
|
706
|
+
- What do <one>mice</one> show who have their <two>AQP2-Gene</two> <three>removed</three>? <one>These mice</one> will show an <two>increased urine output</two>. []
|
707
|
+
- Die Aminosäure <one>Alanin</one> <two>wird woraus synthetisiert</two>? <one>Pyruvat</one> ist der <two>Aminogruppenakzeptor</two>; <three>Alanin wird dabei gebildet</three>. []
|
708
|
+
- The molecule <one>FMN</one> <two>can carry what exactly</two>? <one>FMN</one> can <two>carry hydrogen atoms</two>. URL: https://en.wikipedia.org/wiki/Flavin_mononucleotide []
|
709
|
+
- Was heißt <one>GPI-Anker</one>? <one>Glykosyl-phosphatidyl-inositol-Anker</one>. URL: https://de.wikipedia.org/wiki/GPI-Anker []
|
710
|
+
- Can the <one>AMPK</one> stimulate <two>glucose uptake</two>? <one>Yes</one>. []
|
711
|
+
- A <one>steroid</one> <two>contains</two> <three>how many rings</three>? <one>Four</one>. []
|
712
|
+
- Nenne ein Protein in der Zelle, das <one>Ca²⁺</one> binden kann. A: <one>Calmodulin</one>. URL: https://de.wikipedia.org/wiki/Calmodulin []
|
713
|
+
- Das <one>Avidin-Protein</one> <two>stammt ursprünglich aus ... </two>? Aus <one>Hühnereiern</one>. URL: https://de.wikipedia.org/wiki/Avidin []
|
714
|
+
- <one>Trypsin</one> <two>is produced as an inactive proenzyme</two>, called <three>trypsinogen</three>. It is <four>activated via an endopeptidase</four> which chops off five amino acids from ... which Terminus? From the <one>N-terminal tail</one>. URL: https://en.wikipedia.org/wiki/Trypsinogen []
|
715
|
+
- Andere Bezeichnung für <one>Proteinabbau</one>? <one>Proteolyse</one>. URL: https://de.wikipedia.org/wiki/Proteolyse []
|
716
|
+
- <one>Wie</one> werden meistens <two>Proteine</two> <three>gefällt</three>? Mit Hilfe von <one>Salzen</one> - und zwar meistens <two>Ammoniumsulfat</two> (<three>(NH₄)₂SO₄</three>). URL: https://de.wikipedia.org/wiki/Ammoniumsulfat []
|
717
|
+
- <one>Spurenelemente</one>, <two>die von biologischen Organismen genutzt werden</two>, <three>sind ... (bezogen auf das Periodensystem)</three>? A: <one>Metalle</one>. URL: https://de.wikipedia.org/wiki/Spurenelement []
|
718
|
+
- Andere, ebenso deutsche, Bezeichnung für die <one>Biochemie</one>? <one>Chemie der Biomoleküle</one>. []
|
719
|
+
- Im <one>Phosphoransferasesystem</one>: <two>woher</two> stammt das <three>P</three>? Von <one>PEP</one>. URL: https://de.wikipedia.org/wiki/Phosphotransferasesystem []
|
720
|
+
- <one>Glykogen</one> <two>kann schnell umgewandelt werden in ... </two>? <one>Glucose-1-Phosphat</one>. URL: https://de.wikipedia.org/wiki/Glucose-1-phosphat []
|
721
|
+
- <one>Somatostatin</one> besteht aus <two>wie vielen Aminosäuren</two>? <one>14</one>. URL: https://de.wikipedia.org/wiki/Somatostatin []
|
722
|
+
- Was ist <one>das häufigste Protein der</one> <two>Erythrocyten-Membran</two>? Das <one>Glykophorin</one>. URL: https://de.wikipedia.org/wiki/Glykophorine []
|
723
|
+
- In der Biochemie: <one>welchen Arten</one> an <two>Spaltungsreaktionen</two> <three>können unterschieden werden</three>? (1) <one>homolytische Spaltung</one> (2) <one>heterolytische Spaltung</one> []
|
724
|
+
- Ist <one>Phosphoenolpyruvat</one> <two>energiereicher als</two> <three>ATP</three>? <one>Ja</one>. []
|
725
|
+
- Die <one>Xylulose</one> besitzt <two>wieviele C-Atome</two>? <one>5</one> - die Xylulose ist eine Pentose. URL: https://de.wikipedia.org/wiki/Xylulose []
|
726
|
+
- Nenne <one>ein Beispiel in der Zelle</one> für ein Molekül, in dem sogenannte <two>destruction boxes</two> gefunden werden können. A: In den <one>Cyclinen</one>. URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC1170895/ []
|
727
|
+
- Wie heißen die <one>Salze der Harnsäure</one>? Die <one>Salze der Harnsäure</one> sind die <two>Urate</two>. URL: https://flexikon.doccheck.com/de/Urat []
|
728
|
+
- Was sind die <one>PEST-sequences</one>? (1) <one>P</one>: <two>Prolin</two> (2) <one>E</one>: <two>Glumatinsäure</two> (3) <one>S</one>: <two>Serin</two> (4) <one>T</one>: <two>Threonin</two> URL: https://en.wikipedia.org/wiki/PEST_sequence []
|
729
|
+
- <one>Täglicher Glucosebedarf des Gehirns</one> <two>bei Erwachsenen</two>, <three>in Gramm</three>? <one>120 g</one> / <one>Tag</one>. []
|
730
|
+
- Nenne einen berühmten <two>Vertreter</two> aus der Gruppe der <one>HMG-CoA-Reduktase-Inhibitoren</one>. A: Die Klasse der <one>Statine</one>. URL: https://de.wikipedia.org/wiki/Statin []
|
731
|
+
- <one>Warum</one> fühlen sich <two>Latex-Handschuhe</two> und <two>Menthol-Zuckerl</two> <three>irgendwie verwandt an</three>? Weil beide aus <one>Isopren-Einheiten</one> bestehen. []
|
732
|
+
- <one>Which component</one> of the <two>ATP Synthase</two> <three>is bound to the membrane</three>? The <one>F0</one> component. []
|
733
|
+
- Wieviele <one>endständige -OH Gruppen</one> besitzt <two>Cholesterin</two>? <one>1</one>. URL: https://de.wikipedia.org/wiki/Cholesterin []
|
734
|
+
- Nenne einen <one>direkten Vorläufer von Cholesterin</one>. A: <one>Lanosterin</one>. URL: https://de.wikipedia.org/wiki/Lanosterin []
|
735
|
+
- <one>FAD</one> (<one>Flavin-Adenin-Dinukleotid</one>) besitzt <two>wieviele Phosphatgruppen</two>? <one>2</one>. URL: https://de.wikipedia.org/wiki/Flavin-Adenin-Dinukleotid []
|
736
|
+
- Where will we rarely find <one>disulfide bridges</one>? In <one>intracellular proteins</one>. []
|
737
|
+
- Allgemein formuliert: <one>Wie</one> entstehen <two>biogene Amine</two>? Durch <one>Decarboxylierungsreaktionen aus den Aminosäuren</one>. URL: https://de.wikipedia.org/wiki/Biogene_Amine []
|
738
|
+
- <one>Output</one> der <two>G-Proteine</two>? <one>GDP</one>. URL: https://en.wikipedia.org/wiki/Guanosine_diphosphate []
|
739
|
+
- <one>Titin</one> <two>besteht aus wievielen Aminosäuren</two>? <one>26_900 Aminosäuren</one>. URL: https://de.wikipedia.org/wiki/Titin []
|
740
|
+
- Give an example for a <one>subproteome</one>. A: All <one>proteins</one> that can be found, for example, in a <one>lysosome</one>. URL: https://link.springer.com/referenceworkentry/10.1007%2F3-540-29623-9_8833 []
|
741
|
+
- <one>Absorbieren Proteine</one> im Bereich des <two>sichtbaren Lichts</two> (<three>von 400 bis 800 nm</three>)? <one>Nein</one>. []
|
742
|
+
- Im Alltag: <one>wie entsteht die Substanz</one> <two>Malondialdehyd</two>? Durch <one>Erhitzen von rotem Fleisch</one>. []
|
743
|
+
- In <one>biochemistry</one>: give another term for the <two>Rossmann fold</two>. A: <one>Nucleotide binding fold</one>. URL: https://en.wikipedia.org/wiki/Rossmann_fold []
|
744
|
+
- Andere Bezeichnung für den <one>isoelektrischen Punkt</one>? Der <one>Neutralpunkt</one>. URL: https://de.wikipedia.org/wiki/Neutralpunkt []
|
745
|
+
- <one>Omega-Schleifen</one> besitzen, <two>im Gegensatz zu Alpha-Helix und Beta-Faltblätter</two>, was nicht? Eine <one>regelmässige Struktur</one>. URL: https://en.wikipedia.org/wiki/Omega_loop []
|
746
|
+
- Nenne <one>zwei</one> <two>Hormone</two> die die <three>Blutglukosekonzentration</three> regulieren. A: (1) <one>Insulin</one> (2) <one>Glucagon</one> []
|
747
|
+
- Ein <one>Orthophosphat</one> besitzt wieviele <two>P-Atome</two>? <one>1</one> - die Summenformel von Orthophosphat ist <two>PO₄³⁻</two>. URL: https://www.sciencedirect.com/topics/engineering/orthophosphate []
|
748
|
+
- <one>Pepsin</one> zeigt <two>bei welchem pH Wert</two> seine <three>maximale Aktivität</three>? Pepsin ist bei einem <one>pH-Wert</one> von <two>2</two> am stärksten. URL: https://de.wikipedia.org/wiki/Pepsin []
|
749
|
+
- <one>Die aktive Stelle</one> der meisten <two>Carboanhydrasen</two> <three>enthält was für ein</three> <three>Ion</three>? <one>Carboanhydrasen</one> <two>besitzen in ihrem Zentrum ein</two> <three>Zink-Ion</three>. URL: https://de.wikipedia.org/wiki/%CE%91-Carboanhydrasen []
|
750
|
+
- Was enthält <one>geriebener Meerrettich</one>? <one>Peroxidase</one>. URL: https://de.wikipedia.org/wiki/Peroxidasen []
|
751
|
+
- Wie ist die Tendenz von <one>Glucose</one> <two>zur Ringbildung</two>? <one>Glucose</one> hat eine <two>starke Tendenz zur Ringbildung</two>. []
|
752
|
+
- Was sind <one>Zymogene</one>? <one>Zymogene</one> sind <two>inaktive Enzymvorstufen</two>. URL: https://de.wikipedia.org/wiki/Zymogen []
|
753
|
+
- Bei der <one>ATP-Synthase</one> gibt es die <two>O-Konformation</two>, <three>O</three> für <three>Open</three>. <four>Wieso wurde dieser Name gewählt</four>? <one>O</one> bedeutet hier einfach: <two>Freisetzung von ATP</two>. []
|
754
|
+
- Bei der <one>schematischen Darstellung der Beta-Faltblätter</one>: <two>wohin</two> <three>zeigt die Spitze des Pfeiles</three>? A: In Richtung des <one>carboxyterminales Ende</one>. []
|
755
|
+
- Die <one>Hydroxylierung von Prolin</one> <two>führt zu ...</two>? <one>4-Hydroxyprolin</one>. URL: https://de.wikipedia.org/wiki/Hydroxyprolin []
|
756
|
+
- <one>Imidazol</one> besitzt <two>n N Atome</two> und <two>n C Atome</two>? <one>3x C</one>, <one>2x N</one>. <two>Imidazol</two> ist ein <three>zyklisches Molekül</three>. URL: https://de.wikipedia.org/wiki/Imidazol []
|
757
|
+
- Im <one>Anfinsen-Experiment</one> wurde <two>Harnstoff</two> und ... <two>welche weitere Substanz</two> verwendet? <one>2-Mercaptoethanol</one> (auch <one>Beta-Mercaptoethanol</one> genannt). URL: https://en.wikipedia.org/wiki/2-Mercaptoethanol []
|
758
|
+
- In der Biochemie: was meinen wir mit einer <one>QAE-Gruppe</one>? <two>QAE</two> bezeichnet eine <one>Quartäre Aminoethyl-Gruppe</one>. URL: https://de.wikipedia.org/wiki/Quart%C3%A4re_Ammoniumverbindungen []
|
759
|
+
- Kurzformel für <one>inorganic pyrophosphate</one>? <one>PPi</one>. URL: https://en.wikipedia.org/wiki/Pyrophosphate []
|
760
|
+
- Wie ist ein <one>Dalton</one> definiert? <one>1 Da = 1</one>/<one>12</one> der Masse des <two>Kohlenstoffisotops</two>. URL: https://flexikon.doccheck.com/de/Dalton []
|
761
|
+
- Bei Säugern: <one>das häufigste Protein in deren Körpern</one> ist ... ? <one>Kollagen</one>. URL: https://de.wikipedia.org/wiki/Kollagen []
|
762
|
+
- Nenne <one>drei bekannte</one> <two>Disaccharide</two>. A: (1) <one>Lactose</one> (2) <one>Maltose</one> (3) <one>Saccharose</one> []
|
763
|
+
- <one>Cholesterin</one> ist was für ein <two>'Regler'</two>? <one>Cholesterin</one> ist ein <two>Fluiditätsregler</two>. URL: https://de.wikipedia.org/wiki/Cholesterin []
|
764
|
+
- Eine <one>Wasserstoffbrücke</one> <two>besteht aus welchen zwei Komponenten</two>? Aus einem <one>Wasserstoffdonor</one> und einem <one>Wasserstoffakzeptor</one>. []
|
765
|
+
- <one>In welchem Bereich</one> funktionieren <two>Puffer</two> <three>am besten</three>? A: In der Nähe des <one>pKS Wertes ihres Säurebestandteils</one>. []
|
766
|
+
- Nenne <one>vier Produkte</one> die ausgehend von <two>Pyruvat</two> hergestellt werden können. A: Mnemonic: <one>LEAF</one> (1) <two>Lactat</two> (2) <two>Ethanol</two> (3) <two>Acetat</two> (4) <two>Formiat</two> []
|
767
|
+
- We want to see <one>a protein with quaternary structure</one>. <two>Name the most important requirement of that</two>. A: <one>This protein</one> <two>must have more than one polypeptide</two>. []
|
768
|
+
- <one>Wann</one> wurde das <two>ATP Molekül</two> entdeckt? Im Jahre <one>1929</one>. []
|
769
|
+
- Im <one>ATP-Molekül</one>: <two>welcher Bindungstyp</two> kann zwischen dem <three>Adenosin</three> und der <three>Triphosphatgruppe</three> gefunden werden? Eine <one>Esterbindung</one>. URL: https://de.wikipedia.org/wiki/Adenosintriphosphat []
|
770
|
+
- <one>Myosin</one> <two>has a catalytic site sequence consisting of</two> <three>n aminoacids</three>? <one>Seven aminoacids</one> (<two>7</two>): <three>Gly-Glu-Ser-Gly-Ala-Gly-Lys-Thr</three> []
|
771
|
+
- Are <one>all amides</one> <two>carboxamides</two>? <one>No</one>. URL: https://en.wikipedia.org/wiki/Carboxamide []
|
772
|
+
- Die <one>Eikosanoide</one> <two>leiten sich von welcher Säure ab</two>? <one>Eikosanoide</one> <two>leiten sich von der</two> <three>Arachidonsäure</three> ab. URL: https://de.wikipedia.org/wiki/Arachidons%C3%A4ure []
|
773
|
+
- Beeinflussen <one>Salze</one> das <two>Löslichkeitsverhalten von Proteinen</two>? <one>Ja</one> - <two>sogar erheblich</two>. []
|
774
|
+
- <one>Hydrophobic amino acids</one> <two>may be subdivided into</two> which <three>two general groups</three>? (1) <one>aliphatic</one> (2) <one>aromatic rings</one> []
|
775
|
+
- Die <one>Erythrose</one> <two>besitzt wieviele</two> <three>C-Atome</three>? <one>4</one> - sie ist dadurch eine <two>Tetrose</two>. URL: https://en.wikipedia.org/wiki/Erythrose []
|
776
|
+
- <one>Von welchem Ende aus</one> erfolgt der <two>Edman-Abbau</two>? Vom <one>N-Terminus</one>. URL: https://de.wikipedia.org/wiki/Edman-Abbau []
|
777
|
+
- Was geschieht mit <one>Purinen</one> im <two>human digestive system</two>? <one>Purine</one> werden in <two>uric acid</two> (= <three>Harnsäure</three>) konvertiert. URL: https://en.wikipedia.org/wiki/Uric_acid []
|
778
|
+
- Die <one>Dinitrogenase Reduktase</one> besitzt <two>n Untereinheiten</two>? <one>2</one>. URL: https://de.wikipedia.org/wiki/Nitrogenase#Struktur_und_Eigenschaften []
|
779
|
+
- Die wichtigste <one>Proteinkinase</one> im Menschen ist ... ? Der <one>Insulinrezeptor</one>. Die <two>Beta-Untereinheiten</two> dieses Rezeptors besitzen eine <one>Tyrosinkinase-Aktivität</one>. URL: https://de.wikipedia.org/wiki/Insulinrezeptor []
|
780
|
+
- Nenne die <one>kurze Isoform von p53</one>. A: <one>p44</one>. URL: https://www.ncbi.nlm.nih.gov/pubmed/24341977 []
|
781
|
+
- Andere Bezeichnung für eine <one>Diphosphatgruppe</one>? <one>Pyrophosphat</one>. URL: https://de.wikipedia.org/wiki/Diphosphate []
|
782
|
+
- Die <one>Essigsäure</one> <two>liegt oft im Gleichgewicht mit welchem Ion</two>? Mit dem <one>Acetat-Ion</one> - präziser formuliert: dem <two>Acetat-Anion</two>. URL: https://de.wikipedia.org/wiki/Acetate []
|
783
|
+
- Das <one>Lysozym</one> besitzt <two>n Aminosäuren</two>? <one>129</one>. URL: https://de.wikipedia.org/wiki/Lysozym []
|
784
|
+
- Die <one>simultane Translokation</one> von <two>Natrium</two> und <two>Glucose</two> in eine Zelle nennt man ...? <one>Kotransport</one>. URL: https://en.wikipedia.org/wiki/Cotransporter []
|
785
|
+
- <one>Welches Protein</one> verleiht dem <two>Bindegewebe</two> <three>Flexibilität</three>? <one>Elastin</one>. URL: https://de.wikipedia.org/wiki/Elastin []
|
786
|
+
- Das Enzym <one>Hydrogenase</one> verwendet was als <two>Substrat</two> was genau? <one>H₂</one>. URL: https://de.wikipedia.org/wiki/Hydrogenase []
|
787
|
+
- Was ist <one>Cathepsin</one>? <one>Cathepsin</one> ist eine <two>Protease</two> - genauer: eine Protease, die normalerweise in den Lysosomen gefunden wird, also eine <two>lysosomale Protease</two>. <three>Ein niedriger pH-Wert aktiviert diese Protease</three>. URL: https://en.wikipedia.org/wiki/Cathepsin []
|
788
|
+
- Der <one>Edman-Abbau eines Proteins</one> <two>beginnt an welchem Ende</two>? Am <one>N-Terminus</one>. URL: https://en.wikipedia.org/wiki/Edman_degradation []
|
789
|
+
- <one>Calcium</one> besitzt zumindest <two>zwei wichtige Rollen im menschlichen System</two>. <three>Welche zwei Rollen sind dies</three>? A: (1) <one>Intrazelluläres Signalmolekül</one> (2) <one>Knochenbildner</one> []
|
790
|
+
- Was muss geschehen damit <one>ATP</one> konkret entsteht? Auf <one>ADP</one> <two>muss eine Phosphorgruppe übertragen werden</two>; es muss also <three>phosphoryliert</three> werden. []
|
791
|
+
- Wie werden <one>die inneren Verdauungsorganellen der Zelle</one> genannt? <one>Lysosome</one>. URL: https://de.wikipedia.org/wiki/Lysosom []
|
792
|
+
- Nenne einen <one>Abbauweg</one> für <two>D-Galaktose</two>. A: Der <one>Leloir Abbauweg</one>. URL: https://en.wikipedia.org/wiki/Leloir_pathway []
|
793
|
+
- Nenne einen <one>Antagonisten zu</one> <two>Morphin</two>. A: Der <one>Opiod-Antagonist</one> <two>Naloxon</two>. URL: https://de.wikipedia.org/wiki/Naloxon []
|
794
|
+
- Das <one>Disaccharid</one> <two>Saccharose</two> <three>besteht aus ...</three>? A: <one>Glucose</one> und <one>Fructose</one> (<two>GluFu</two>). []
|
795
|
+
- <one>Chitin</one> ist ein Polysaccharid, das aus <two>Glucose-Monomeren</two> besteht. <three>Welche Besonderheit hat es in seiner chemischen Struktur</three>? <one>Chitin</one> besitzt <two>'nitrogen-containing carbonyl groups'</two>. []
|
796
|
+
- Nenne einen wichtigen <one>Methylgruppenüberträger</one> <two>in der Biochemie</two>. A: <one>S-Adenosylmethionin</one>. URL: https://de.wikipedia.org/wiki/S-Adenosylmethionin []
|
797
|
+
- Definiere den Begriff <one>Racemat</one>. A: Ein <one>Racemat</one> ist <two>eine 1:1 Mischung zweier Enantiomere</two>. URL: https://de.wikipedia.org/wiki/Racemat []
|
798
|
+
- <one>Wie</one> kann die <two>Phospholipase A2</two> <three>gehemmt werden</three>? Mit Hilfe von <one>Cortisol</one>. URL: https://de.wikipedia.org/wiki/Phospholipase_A2 []
|
799
|
+
- Nenne ein <one>automatisiertes Verfahren zur Synthese von Peptiden</one>. A: Die <one>Merrifield-Synthese</one>. URL: https://de.wikipedia.org/wiki/Merrifield-Synthese []
|
800
|
+
- <one>Aus welchen zwei Komponenten</one> wird <two>S-Adenosylmethionin</two> <three>gebildet</three>? (1) <one>ATP</one> (2) <one>Methionin</one> []
|
801
|
+
- Nenne <one>ein Beispiel</one> für eine <two>Thiolprotease</two>. A: <one>Papain</one>. URL: https://de.wikipedia.org/wiki/Papain []
|
802
|
+
- What are <one>Glucans</one>? <one>Glucans</one> are <two>polymers of glucose</two> (more accurately: <three>D-Glucose</three>). URL: https://en.wikipedia.org/wiki/Glucan []
|
803
|
+
- <one>Wieso</one> verwenden wir in der Biochemie, im Labor, <two>2-Mercaptoethanol</two>? Zum <one>Aufbrechen</one>/<one>Auflösen der Disulfidbrücken</one>. []
|
804
|
+
- Wie wird die <one>oxidierte Form des Hämoglobins</one> genannt? <one>Methämoglobin</one>. URL: https://de.wikipedia.org/wiki/Meth%C3%A4moglobin []
|
805
|
+
- Nenne ein bekanntes, <one>automatisiertes Verfahren</one> zur <two>Synthese von Peptiden</two>. A: Die <one>Merrifield-Synthese</one>. URL: https://de.wikipedia.org/wiki/Merrifield-Synthese []
|
806
|
+
- Kann der Mensch <one>Acetyl-CoA</one> in <two>Pyruvat</two> überführen? <one>Nein</one>. []
|
807
|
+
- What is the <one>most common protein</one> <two>in the human body</two>? <one>Collagen</one>. URL: https://en.wikipedia.org/wiki/Collagen []
|
808
|
+
- Wie groß, in <one>kDa</one>, sind die <two>Aquaporine</two>? <one>24 kDa</one>. URL: https://en.wikipedia.org/wiki/Aquaporin []
|
809
|
+
- The enzyme <one>pyruvate carboxylase</one> <two>has what kind of prosthetic group</two>? The <one>pyruvate carboxylase</one> contains <two>a biotin prosthetic group</two>. URL: https://en.wikipedia.org/wiki/Biotin []
|
810
|
+
- Bei einer <one>reversed-phase Matrix</one> verwenden wir <two>Kieselgel</two>. <three>Womit ist dieses Kieselgel beschichtet</three>? Mit <one>Alkylketten</one>. URL: https://www.analytik.ethz.ch/vorlesungen/biopharm/Trennmethoden/AnalytischeChemie_Skript_3_LC.pdf []
|
811
|
+
- The <one>steroid core structure</one> <two>includes how many carbon atoms</two>? <one>17</one>. (Mnemonic: <one>A-B-C-D-17</one>). URL: https://i.imgur.com/uK7KAF1.png []
|
812
|
+
- Englisches Wort für <one>Adrenalin</one>? <one>Epinephrine</one>. URL: https://en.wikipedia.org/wiki/Epinephrine []
|
813
|
+
- <one>Welche Eigenschaft</one> <two>'hat'</two> <three>ein denaturiertes Protein</three>? Ein <one>denaturiertes Protein</one> ist <two>biologisch inaktiv</two>. []
|
814
|
+
- Die <one>ATPase</one> besitzt <two>drei verschiedene Konformationen</two>. <three>Wie geht die zyklische Reihenfolge hierzu</three>? <one>O → L → T</one>. []
|
815
|
+
- Nenne <one>einen ungewöhnlichen Inhibitor</one> der <two>Phosphodiesterase 5</two>. A: <one>Viagra</one> (<mediumturquoise>sildenafil</mediumturquoise>) URL: https://www.drugs.com/viagra.html []
|
816
|
+
- Anderer Begriff für den <one>Verbrauch von ATP</one>? <one>ATP-Hydrolyse</one>. URL: https://en.wikipedia.org/wiki/ATP_hydrolysis []
|
817
|
+
- Der Vorläufer von <one>T3</one> ist ... ? <one>Tyrosin</one>. URL: https://en.wikipedia.org/wiki/Thyroid_hormones []
|
818
|
+
- Es gibt <one>Lektine</one> vom <two>C-Typ</two>. Was hat das <three>C</three> hier zu bedeuten? Das C steht für <one>Calcium-abhängig</one>. URL: https://flexikon.doccheck.com/de/C-Typ-Lektin-Rezeptor []
|
819
|
+
- Verwende eine <one>andere Bezeichnung</one> für den <two>Mechanismus der Energiekopplung</two>. A: <one>Chemieosmose</one>. URL: https://de.wikipedia.org/wiki/Chemiosmotische_Kopplung []
|
820
|
+
- Nenne <one>ein Homolog zu</one> <two>Calnexin</two>. A: <one>Calreticulin</one>. URL: https://de.wikipedia.org/wiki/Calreticulin []
|
821
|
+
- <one>Disulfide Bridges</one> <two>are what type of bond</two>? <one>Disulfide bonds</one> are <two>covalent bonds</two>. URL: https://en.wikipedia.org/wiki/Disulfide []
|
822
|
+
- <one>Welche Lebewesen</one> besitzen vor allem <two>Stanole</two>? Die <one>Pflanzen</one> - <two>Stanole</two> sind <three>pflanzliche Sterine</three>. URL: https://www.webmd.com/cholesterol-management/sterols-stanols-what-know []
|
823
|
+
- In der Biochemie: kann es mehr als einen <one>isoelektrischen Punkt</one> geben? <one>Nein</one>. []
|
824
|
+
- Das wichtigste, <one>proteolytische Enzym im Magen des Menschen</one> ist ... ? <one>Pepsin</one>. URL: https://de.wikipedia.org/wiki/Pepsin []
|
825
|
+
- <one>Cholesterin</one> besitzt <two>wieviele C Atome</two>? <one>27</one>. URL: https://de.wikipedia.org/wiki/Cholesterin []
|
826
|
+
- Die <one>Guanidino-Gruppe</one> besitzt wieviele <two>H-Atome</two> (nur in ihrer Gruppe selbst)? Die <one>Guanidino-Gruppe</one> besitzt <one>5 H Atome</one>. URL: https://en.wikipedia.org/wiki/Guanidine []
|
827
|
+
- Nenne einen <one>Cofaktor</one> der <two>H</two> (ein <three>Wasserstoffatom</three>) akzeptiert. A: <one>NAD⁺</one>. URL: https://de.wikipedia.org/wiki/Nicotinamidadenindinukleotid []
|
828
|
+
- Der <one>Aminoalkohol</one> <two>Sphingosin</two> besitzt <three>wieviele C-Atome</three>? <one>18</one>. URL: https://de.wikipedia.org/wiki/Sphingosin []
|
829
|
+
- In der Biochemie: <one>was bindet</one> die <two>Rossmann fold</two>? Dieses Motiv bindet <one>Nukleotide</one> - vor allem den <two>Kofaktor NAD</two>. URL: https://en.wikipedia.org/wiki/Rossmann_fold []
|
830
|
+
- Nenne <one>ein Beispiel</one> für ein <two>Dipeptid</two>. A: <one>Aspartam</one>. Aspartam besteht aus <two>aspartic acid</two>, also <royalblue>D</royalblue>, und <two>phenylalanine</two>, also <royalblue>F</royalblue> - in Summe <royalblue>DF</royalblue>.) URL: https://de.wikipedia.org/wiki/Aspartam []
|
831
|
+
- Chemisch betrachtet ist <one>N-Acetylglucosamin</one> ... ? <one>N-Acetylglucosamin</one> ist ein <two>Aminozucker</two>. URL: https://en.wikipedia.org/wiki/N-Acetylglucosamine []
|
832
|
+
- Nenne ein Beispiel für ein <one>Phosphoprotein</one>. A: <one>Kappa-Casein</one>. URL: https://en.wikipedia.org/wiki/K-casein []
|
833
|
+
- <one>Sessel-</one> oder <one>Wannenform</one>. Welche dieser beiden Formen ist <three>energiereicher</three>? Die <one>Wannenform</one> <two>ist energiereicher</two>. (Mnemonic: Die Wanne ist viel grösser als der Sessel.) URL: https://de.wikipedia.org/wiki/Konformation []
|
834
|
+
- Die <one>Ketoseform der Ribose</one> <two>heißt ...</two>? A: <one>Ribulose</one>. URL: https://de.wikipedia.org/wiki/Ribulose []
|
835
|
+
- Welchen <one>Cofaktor</one> benötigt die <two>Alkohol-Dehydrogenase</two>? <one>NAD⁺</one>. URL: https://de.wikipedia.org/wiki/Alkoholdehydrogenase []
|
836
|
+
- Die Vorläufersubstanz von <one>Anthranilat</one> in der Biosynthese von Tryptophan ist ...? <one>Chorismat</one>. URL: https://de.wikipedia.org/wiki/Chorismins%C3%A4ure []
|
837
|
+
- Die <one>Cholesterinbiosythese</one> <two>beim Menschen</two> <three>beginnt wo im Körper</three>? In der <one>Leber</one>. URL: https://de.wikipedia.org/wiki/Cholesterinbiosynthese []
|
838
|
+
- Was ist <one>der biologische Zweck</one> hinter der <two>Geranylgeranylierung</two>? Einem <one>Protein die</one> <two>Membranverankerung</two> <one>zu ermöglichen</one>. []
|
839
|
+
- The <one>ubiquitin protein</one> has a prominent set of <two>which aminoacid</two>? <one>Ubiquitin</one> contains <two>7 lysine residues</two> (<three>7 lysines</three>). []
|
840
|
+
- Nenne einen <one>Zuckeralkohol</one>, der mit dem Buchstaben <two>I</two> beginnt. A: <one>Inositol</one>. URL: https://de.wikipedia.org/wiki/Inosit []
|
841
|
+
- Wieviele <one>C-Atome</one> besitzt <two>Laktat</two>? <one>3</one>. URL: https://de.wikipedia.org/wiki/Lactate []
|
842
|
+
- Definiere den Begriff <one>Gruppentranslokation</one>. A: <one>Gruppentranslokation</one> ist ein <two>Transportvorgang</two>, <three>bei dem die aufgenommene Substanz chemisch verändert wird</three>, <four>im Zuge dieses Aufnahmeprozesses</four>. URL: https://de.wikipedia.org/wiki/Gruppentranslokation []
|
843
|
+
- Das <one>ATP-Molekül</one> <two>hat was für einen Zucker</two>? <one>Ribose</one>. URL: https://de.wikipedia.org/wiki/Adenosintriphosphat []
|
844
|
+
- Nenne <one>zwei Enzyme</one>, die <two>Oxalacetat</two> <three>herstellen können</three>. A: <one>Zwei Carboxylasen</one>, und zwar: (1) <two>Pyruvat-Carboxylase</two>: in <three>Hefen</three> (2) <two>PEP-Carboxylase</two>: in <three>Bakterien</three> []
|
845
|
+
- <one>Andere Bezeichnung</one> für die Substanz <two>Heroin</two>? <one>Diacetylmorphin</one>. URL: https://de.wikipedia.org/wiki/Heroin []
|
846
|
+
- Was geschieht mit <one>Milchsäure</one> <two>im Magen</two>? <one>Milchsäure</one> im Magen reagiert mit <two>Calcium</two> zu <two>Calciumlactat</two>. (<three>Lactat + Calcium = Calciumlactat</three>) []
|
847
|
+
- Die <one>thermodynamischen Hauptsätze</one> <two>unterscheiden ganz klar zwischen</two> <three>welchen zwei Eigenschaften</three>? A: Einem <one>System</one> und dessen <one>Umgebung</one>. []
|
848
|
+
- <one>Was entsteht</one> wenn <two>Pyruvat</two> <three>transaminiert wird</three>? <one>Alanin</one>. URL: https://de.wikipedia.org/wiki/Alanin []
|
849
|
+
- Is <one>Phosphatidylinositol</one> an <two>amphiphile</two>? <one>Yes</one> - it has a <two>polar</two> and a <two>>non-polar region</two>. []
|
850
|
+
- <one>Harnsäure</one> <two>ähnelt welch zellulärem Molekül</two>? Den <one>Purinbasen der Nukleotide</one>. URL: https://upload.wikimedia.org/wikipedia/commons/thumb/a/af/Harns%C3%A4ure_Enolform.svg/1200px-Harns%C3%A4ure_Enolform.svg.png []
|
851
|
+
- <one>Wo</one> genau finden wir <two>Methylation</two> <three>bei Proteinen</three>? An (1) <one>Lysinen</one>, und (2) <one>Argininen</one>. []
|
852
|
+
- Nenne <one>ein Protein</one>, in dem eine <two>Allysin-Verknüpfung</two> gefunden werden kann. A: <one>Elastin</one>. (Mnemonic: <two>El..Al</two>) URL: https://de.wikipedia.org/wiki/Elastin []
|
853
|
+
- <one>Größter Glucosebedarf</one> <two>im menschlichen Körper</two>? Das <one>Gehirn</one> <two>benötigt am meisten Glucose</two>. []
|
854
|
+
- Die <one>Aktivität eines Enzyms</one> <two>wird worin angegeben</two> (auch die Einheiten angeben)? In <one>Katal</one> (Umsetzung von <two>1 Mol Substrat</two>/<two>sec</two>). URL: https://de.wikipedia.org/wiki/Katal []
|
855
|
+
- <one>Welcher Zucker</one> <two>kann in ATP gefunden werden</two>? Die <one>Ribose</one>. []
|
856
|
+
- Was ist <one>das größte, bekannte Protein</one> und <two>wieviele Aminosäuren besitzt es</two>? <one>Titin</one> - wobei man anmerken sollte, das Titin in <two>verschiedenen Isoformen</two> vorkommen kann, und diese knapp ~27.000 Aminosäuren die untere Grenze darstellen. URL: https://en.wikipedia.org/wiki/Titin []
|
857
|
+
- <one>Wo</one> <two>in der Zelle</two> finden wir die <three>protein disulfide isomerase</three>? Im <one>ER Lumen</one>. URL: https://en.wikipedia.org/wiki/Protein_disulfide-isomerase []
|
858
|
+
- <one>Deamination of 5-Methylcytosine</one> <two>generates what</two>? <one>Thymine</one> (<two>5-MeC → deamination → Thymine</two>). URL: https://upload.wikimedia.org/wikipedia/commons/thumb/3/3a/5-Methylcytosine.svg/620px-5-Methylcytosine.svg.png []
|
859
|
+
- Im menschlichen Körper: nenne ein <one>Reservoir energiereicher Phosphorylgruppen</one>. A: <one>Kreatinphosphat</one>. URL: https://de.wikipedia.org/wiki/Kreatin []
|
860
|
+
- Give another expression for <one>vinegar</one>. A: <one>Acetic acid</one>. URL: https://en.wikipedia.org/wiki/Vinegar []
|
861
|
+
- Give the biochemical name of <one>Alkapton</one>. A: <one>Homogentisic acid</one>. URL: https://en.wikipedia.org/wiki/Homogentisic_acid []
|
862
|
+
- <one>Mit welchem Gesetz</one> können <two>elektrostatische Wechselwirkungen</two> beschrieben werden? A: Mit Hilfe des <one>Coulomb-Gesetz</one>. URL: https://de.wikipedia.org/wiki/Coulombsches_Gesetz []
|
863
|
+
- Die meisten Proteine sind <one>globuläre Proteine</one>. Welch weitere <two>Proteintyp</two> ist sehr gut bekannt? Es gibt auch <one>Faserproteine</one>. URL: https://www.spektrum.de/lexikon/biochemie/faserproteine/2119 []
|
864
|
+
- Wieviele <one>OH-Gruppen</one> besitzt <two>Shikimat</two>? <one>3</one>. URL: https://de.wikipedia.org/wiki/Shikimis%C3%A4ure []
|
865
|
+
- <one>Warum</one> wirkt <two>Koffein</two> <three>so stark</three>? <one>Koffein</one> ähnelt dem <two>Adenosin-Molekül</two>. URL: https://de.wikipedia.org/wiki/Coffein []
|
866
|
+
- Andere Bezeichnung für die <one>Glucokinase</one>? <one>Hexokinase IV</one>. URL: https://en.wikipedia.org/wiki/Hexokinase#Hexokinase_IV_%28%22glucokinase%22%29 []
|
867
|
+
- Welche <one>Enzymklasse</one> dominiert in den <two>Lysosomen</two>? Die <one>Hydrolasen</one>. URL: https://de.wikipedia.org/wiki/Hydrolase []
|
868
|
+
- The abbreviation <one>ampholytes</one> <two>stands for ... </two>? <one>Amphoteric electrolytes</one>. URL: https://en.wikipedia.org/wiki/Amphoterism []
|
869
|
+
- Nenne einen <one>C3-Körper</one> der an der <two>Biosynthese von Fettsäuren</two> <three>beteiligt ist</three>, <four>nicht jedoch an deren Abbau</four>. A: <one>Malonyl-CoA</one>. URL: https://de.wikipedia.org/wiki/Malonyl-CoA []
|
870
|
+
- Ein <one>Ether</one> ist <two>eine Verbindung zweier ... </two>? <one>Alkohole</one>. (Praktisch eine beschwipste Liebesunion.) []
|
871
|
+
- <one>Was entsteht</one> <two>bei einer Reaktion</two> von <three>Morphin</three> mit <three>Essigsäure</three>? <one>Diacetylmorphin</one> - also <two>Heroin</two>. URL: https://de.wikipedia.org/wiki/Heroin []
|
872
|
+
- In einer <one>rechtsgängigen Alpha-Helix</one>: <two>wieviele Reste</two> kann man <three>pro Windung</three> erkennen? <one>3.6 Reste pro Windung</one>. []
|
873
|
+
- Die <one>Ausgangssubstanz</one> für die <two>Histamine</two> ist ... ? <one>Histidin</one>. URL: https://de.wikipedia.org/wiki/Histamin []
|
874
|
+
- <one>G-Proteine</one> <two>weisen welche Aktivität auf</two>? Eine <one>GTPase-Aktivität</one>. URL: https://de.wikipedia.org/wiki/G-Proteine []
|
875
|
+
- <one>Wieviele</one> <two>Fe</two>/<two>S-Zentren</two> hat <three>Komplex I</three> <four>der Atmungskette</four>? <one>8</one>. []
|
876
|
+
- <one>Compare</one>, roughly, the <two>fatty acids content</two> of <three>adult insects to larva</three>, in mg (start-point to end-point. A: From <one>20mg</one> down to <one>7mg</one>. []
|
877
|
+
- Nenne zwei <one>Orte</one> wo <two>Alpha-Keratin</two> gefunden werden kann. A: (1) <one>Haare</one> (2) <one>Nägel</one> []
|
878
|
+
- <one>Was ist energiereicher</one>: eine <two>Säureamidbindung</two> oder eine <two>Säureanhydridbindung</two>? Die <one>Säureanhydridbindung</one> <two>ist energiereicher</two>. URL: https://de.wikipedia.org/wiki/S%C3%A4ureanhydride []
|
879
|
+
- Anderer Begriff für <one>Stärke</one>? <one>Polymerisierte Glucose</one>. URL: https://de.wikipedia.org/wiki/St%C3%A4rke []
|
880
|
+
- Wie nennen wir einen <one>internen Ester</one>? <one>Lacton</one>. URL: https://de.wikipedia.org/wiki/Lactone []
|
881
|
+
- <one>Glucosamin</one> <two>ist fast ident zu welchem anderen Molekül</two>? Zu <one>Galactosamin</one>. URL: https://de.wikipedia.org/wiki/Galactosamin []
|
882
|
+
- Was heißt eigentlich <one>Calmodulin</one>? <one>CALcium MODULated proteIN</one>. URL: https://en.wikipedia.org/wiki/Calmodulin []
|
883
|
+
- <one>Welche Substanz</one> entsteht wenn <two>Arginin</two> desaminiert wird? Es entsteht hierbei <one>Citrullin</one>. URL: https://de.wikipedia.org/wiki/Citrullin []
|
884
|
+
- Was ist die <one>C₃₀</one> Vorstufe von <two>Cholesterin</two>? Das <one>Squalen</one> (Summenformel: <two>C₃₀H₅₀</two>. URL: https://de.wikipedia.org/wiki/Squalen []
|
885
|
+
- Erfolgt bei der <one>Transaminierung</one> eine <two>Netto-Desaminierung</two>? <one>Nein</one>. URL: https://de.wikipedia.org/wiki/Transaminierung []
|
886
|
+
- Name <one>an enzyme</one> that uses <two>Ni²⁺</two> <three>as a cofactor</three>. A: The <one>Urease</one>. URL: https://de.wikipedia.org/wiki/Urease []
|
887
|
+
- Die Ausgangsverbindung der <one>Flavine</one> ist ... ? <one>Riboflavin</one>. (Mnemonic: Riboflavin enthält das Wort <one>flavin</one>.) URL: https://de.wikipedia.org/wiki/Riboflavin []
|
888
|
+
- <one>Aminozucker</one> erhalten <two>ihre Aminogruppe</two> von ... ? <one>Glutamin</one> (<one>Mnemonic</one>: Amin...Glutamin). URL: https://de.wikipedia.org/wiki/Aminozucker []
|
889
|
+
- <one>Saccharose</one> versus <one>Fructose</one>: <two>wer von diesen beiden Molekülen ist süßer</two>? Die <one>Fructose</one> ist <two>viel süßer</two>. []
|
890
|
+
- Welchen <one>Cofaktor</one> besitzen die <two>Carboxylasen</two>? <one>Biotin</one>. URL: https://de.wikipedia.org/wiki/Biotin []
|
891
|
+
- Die <one>Ribose</one> ist über welche Stickstoffe bei <two>Purinen</two> und <two>Pyrimidinen</two> mit dem Zucker verknüpft? (1) <one>Pyrimidine</one> <two>N1</two> (2) <one>Purine</one> <two>N9</two> []
|
892
|
+
- Ist <one>Harnstoff</one> <two>wasserlöslich</two>? <one>Ja</one> - sogar <two>sehr gut</two>. URL: https://de.wikipedia.org/wiki/Harnstoff []
|
893
|
+
- Bei einer <one>Esterbildung</one>: was geht <two>verloren</two>? <one>Wasser</one>. URL: https://de.wikipedia.org/wiki/Veresterung []
|
894
|
+
- Gegeben ist <one>Amylopektin</one> und <one>Amylose</one>. Eines davon ist verzweigt, eines davon unverzweigt. <two>Wie merke ich mir welches was ist</two>? (<mediumturquoise>MNEMO</mediumturquoise>) Das kürzere (<one>Amylose</one>) ist frei, geradlinig und somit unverzweigt. Das längere (<one>Amylopektin</one>) hingegen ist kompliziert, länger, und somit verzweigt. []
|
895
|
+
- Besitzt <one>ATP</one> eine <two>N-glycosidische Bindung</two>? <one>Ja</one>. URL: https://en.wikipedia.org/wiki/Adenosine_triphosphate#/media/File:Adenosintriphosphat_protoniert.svg []
|
896
|
+
- <one>Saccharose</one> besteht aus ... ? <one>Fructose</one> + <one>Glucose</one>. URL: https://de.wikipedia.org/wiki/Saccharose []
|
897
|
+
- <one>Vitamin B1</one> beziehungsweise ein Derivat hiervon kann <two>in welchem Coenzym</two> gefunden werden? In <one>TPP</one>. URL: https://en.wikipedia.org/wiki/Thiamine_pyrophosphate []
|
898
|
+
- Nenne <one>ein konkretes Beispiel</one> für eine <two>Hämoglobinopathie</two>. A: Die <one>Sichelzellenanämie</one>. URL: https://de.wikipedia.org/wiki/Sichelzellenan%C3%A4mie []
|
899
|
+
- Nenne <one>ein Beispiel für einen</one> <two>natürlichen Polyenfarbstoff</two>. A: <one>β-Carotin</one>. URL: https://de.wikipedia.org/wiki/Carotine#Nat.C3.BCrliches_Vorkommen []
|
900
|
+
- <one>Shikimat</one> besitzt eine - oder mehrere - OH-Gruppe(n). <two>Wieviele genau</two>? <one>3</one>. URL: https://de.wikipedia.org/wiki/Shikimis%C3%A4ure []
|
901
|
+
- <one>Fumarat</one> <two>besitzt wieviele C Atome</two>? <one>4</one>. URL: https://de.wikipedia.org/wiki/Fumars%C3%A4ure []
|
902
|
+
- Nenne ein konkretes Beispiel für einen <one>Aminoalkohol</one>. A: <one>Sphingosin</one>. URL: https://de.wikipedia.org/wiki/Sphingosin []
|
903
|
+
- <one>AMP</one> <two>stimuliert vor allem die Aktivität von ... </two>? <one>Proteinkinasen</one>. URL: https://de.wikipedia.org/wiki/Proteinkinasen []
|
904
|
+
- Was erzeugt der <one>Pyruvat-Dehydrogenase Komplex</one>? <one>Acetyl-CoA</one> (<two>ausgehend von Pyruvat</two>). URL: https://de.wikipedia.org/wiki/Pyruvatdehydrogenase-Komplex []
|
905
|
+
- <one>Ribulose-1,-5-bisphosphat</one> <two>besitzt</two> <three>n C-Atome</three>? A: <one>5</one>. URL: https://de.wikipedia.org/wiki/Ribulose-1,5-bisphosphat []
|
906
|
+
- Formel des <one>Phosphation</one>? <one>PO₄</one><two>³⁻</two>. URL: https://en.wikipedia.org/wiki/Phosphate []
|
907
|
+
- The, correctly named, initially synthesized <one>purine derivative</one> is called how? <one>IMP</one>: <two>inosine monophosphate</two>. URL: https://en.wikipedia.org/wiki/Inosinic_acid []
|
908
|
+
- Nenne eine andere Bezeichnung für die <one>Glucokinase</one>. A: <one>Hexokinase IV</one>. URL: https://de.wikipedia.org/wiki/Hexokinase []
|
909
|
+
- Nenne ein <one>Protein</one>, das auf <two>mechanische Spannung</two> <three>reagieren kann</three>. A: <one>Elastin</one>. URL: https://de.wikipedia.org/wiki/Elastin []
|
910
|
+
- Nenne einen Vertreter der <one>Mineralcorticoide</one>. A: <one>Aldosteron</one>. URL: https://de.wikipedia.org/wiki/Aldosteron []
|
911
|
+
- <none>Mit welchem Enzym</one> arbeitete <two>Daniel Koshland</two> als er die <three>induced fit Three</three> erstellte? Mit der <one>Hexokinase</one>. URL: https://de.wikipedia.org/wiki/Hexokinase []
|
912
|
+
- <one>Xylose</one> contains <two>n C atoms</two>? <one>5</one>. URL: https://de.wikipedia.org/wiki/Xylose []
|
913
|
+
- Nenne <one>die wichtigste Komponente des SRP</one>. A: Die <one>7SL RNA</one>. URL: https://de.wikipedia.org/wiki/7SL-RNA []
|
914
|
+
- Bei <one>allosterisch regulierten Enzymen</one> gibt es die <two>R Form</two> und die <two>T Form</two>. <three>Was heißt dies jeweils</three>? (1) <one>R</one> ... <two>relaxed</two> (2) <one>T</one> ... <two>tense</two> []
|
915
|
+
- Zum <one>Aufbau der Cellulose</one> <two>wird was benötigt</two> (als Grundsubstanz)? <one>Glucose</one>. URL: https://de.wikipedia.org/wiki/Cellulose []
|
916
|
+
- <one>Thiols</one> are readily oxidized to ..., and <one>Disulfides</one> are readily reduced to ...? <one>Thiols</one> are readily oxidized to <one>Disulfides</one>, and <one>Disulfides</one> are readily reduced to <one>Thiols</one> (<two>Yin</two>/<two>Yang</two>). []
|
917
|
+
- <one>Ureic acid</one> ist, <two>chemisch betrachtet</two>, <three>was für eine Substanz</three>? <two>Ureic acid</two> ist eigentlich ein <one>Purin</one>. URL: http://www.chm.bris.ac.uk/motm/uric-acid/uric-acid.gif []
|
918
|
+
- <one>CD4</one> besitzt wieviele <two>extracellular domains</two>? <one>4</one> - leicht zu merken. \o/ []
|
919
|
+
- What is an <one>Arabinan</one>? <one>Arabinan</one> is a <two>polymer of arabinose</two>. URL: https://www.ncbi.nlm.nih.gov/pubmed/19801419 []
|
920
|
+
- Wie ist <one>Pyridoxal-5-phosphat</one> (<two>PLP</two>) mit dem Derivat von Pyridoxin (Vitamin B6) strukturell verbunden? Über eine <one>Schiffsche Base</one> (<one>Imin</one>), kovalent. []
|
921
|
+
- <one>How</one> can the <two>Alpha Helix</two> structure be maintained? Through <one>internal H Bonding</one>. []
|
922
|
+
- Das <one>Disaccharid</one> <two>Maltose</two> besteht aus welchen Zuckern? A: <one>2x Glucose</one>. URL: https://de.wikipedia.org/wiki/Maltose []
|
923
|
+
- <one>Welche Vitamine</one> sind <two>Steroide</two>? A: <one>Vitamin</one> <two>D</two>. (Merkschema: Steroi_<three>D</three>_e). []
|
924
|
+
- Was finden wir in einer <one>Fettzelle</one>? Ein <one>Fetttröpfchen</one>, <two>das fast die ganze Zelle ausfüllt</two>. URL: https://de.wikipedia.org/wiki/Adipozyt []
|
925
|
+
- Wieviele <one>ATP</one> Moleküle können aus einer <two>C16 Fettsäure</two> <three>gewonnen werden</three>? <one>108 ATP</one>. []
|
926
|
+
- Ist <one>Hämoglobin</one> oder <one>Lysozym</one> <two>kleiner</two>? <one>Lysozym</one> <two>ist kleiner</two> - es <three>besitzt auch weniger Aminosäuren als Hämoglobin</three>. []
|
927
|
+
- Erster Schritt bei der <one>Proteinreinigung</one>? A: Erstellung eines <one>Homogenisats</one>. URL: https://en.wikipedia.org/wiki/Homogenization_%28biology%29 []
|
928
|
+
- If the <one>concentration of</one> <two>beta-hydroxybutyrate</two> increases, what can be concluded from this? That a <one>ketosis</one> may be happening right now. URL: https://en.wikipedia.org/wiki/Ketosis []
|
929
|
+
- What is the <one>archetypical example</one> of <two>a serine protease</two>. A: <one>Trypsine</one>. URL: https://en.wikipedia.org/wiki/Trypsine []
|
930
|
+
- <one>Carbamoylphosphat</one> erhält seine <two>Phosphatgruppe</two> von ...? <one>ATP</one>. URL: https://de.wikipedia.org/wiki/Carbamoylphosphat []
|
931
|
+
- Der Begriff <one>Vitamin E</one> <two>umfasst welche Strukturen</two>? <one>Tocopherol</one>. URL: https://de.wikipedia.org/wiki/Tocopherol []
|
932
|
+
- <one>Wann</one> wurde entdeckt, das <two>organischer Harnstoff</two> aus <three>nichtlebenden Komponenten</three> hergestellt werden kann? Im Jahre <one>1828</one>. URL: https://de.wikipedia.org/wiki/Friedrich_W%C3%B6hler#Leistungen []
|
933
|
+
- <one>RNase A</one> <two>cuts after</two>? <one>RNase A</one> will cut after a <two>pyrimidine</two>. URL: https://www.ncbi.nlm.nih.gov/pubmed/11087402 []
|
934
|
+
- Der <one>Hauptbestandteil von Haaren</one> (genau) <two>ist ... </two>? A: <one>Alpha-Keratin</one>. URL: https://en.wikipedia.org/wiki/Alpha-keratin []
|
935
|
+
- The <one>most abundant protein</one> <two>in the human body</two> <three>is ... </three>? <one>Collagen</one>. URL: https://en.wikipedia.org/wiki/Collagen []
|
936
|
+
- <one>CoA</one> <two>contains which very important residue</two>? <two>CoA</two> contains a <one>pantothenic acid residue</one>. URL: https://en.wikipedia.org/wiki/Coenzyme_A []
|
937
|
+
- <one>Retinal</one> <two>interacts with a</two> <three>... fragment</three>? <one>Lysine Fragment</one>. URL: https://en.wikipedia.org/wiki/Retinal []
|
938
|
+
- <one>How many ATP molecules</one> does <two>one ATP synthase</two> <three>produce per second</three>? <one>400</one>. []
|
939
|
+
- The <one>disulfide bridge formation</one> <two>requires what</two>? An <one>oxidative environment</one>. []
|
940
|
+
- <one>Wo</one>, zum Beispiel, kann <two>Palmitinsäuremyricylester</two> <three>gefunden werden</three>? In <one>Bienenwachs</one>. URL: https://de.wikipedia.org/wiki/Bienenwachs#Aufbau_und_Eigenschaften []
|
941
|
+
- <one>Wie</one> werden <two>harte Keratine</two> <three>stabilisiert</three>? Die Peptidketten enthalten zahlreiche <two>Cystein-Reste</two>, die eine <one>Quervernetzung über Disulfidbindungen</one> erlauben, und somit die Festigkeit erhöhen. []
|
942
|
+
- <one>Biotin</one> wird auch <two>Vitamin H</two> genannt. Wieso H? <springgreen>H</springgreen> ... für <one>Haut</one>, im Jahr <two>1898</two>, als es von Steinitz entdeckt wurde. []
|
943
|
+
- Nach der Anzahl der Kohlenstoffatome kann man <one>Monosaccharide</one> einteilen. Nenne die Namen für 3, 4, 5, 6 und 7 C-Atomen solcher Monosaccharide. A: (1) <one>Triosen</one>: <two>3C</two> (2) <one>Tetrosen</one>: <two>4C</two> (3) <one>Pentosen</one>: <two>5C</two> (4) <one>Hexosen</one>: <two>6C</two> (5) <one>Heptosen</one>: <two>7C</two> []
|
944
|
+
- Definiere/Zeichne eine <one>Carbonylgruppe</one>. A: Eine <one>Carbonylgruppe</one> ist eine <one>-C=O Gruppe</one>. URL: https://de.wikipedia.org/wiki/Carbonylgruppe []
|
945
|
+
- <one>Peptides</one> contain <two>n free Alpha-amino groups</two>? <one>1</one>. []
|
946
|
+
- <one>Warum</one> können wichtige Proteine nicht <two>frei</two> <three>evolvieren</three>? A: Da Proteine bestimmte, <one>wichtige Aufgaben in der Zelle zu erfüllen haben</one>. []
|
947
|
+
- Die molekulare Größe von <one>Ubiquitin</one> beträgt ... ? <one>8.5 kDa</one>. URL: https://de.wikipedia.org/wiki/Ubiquitin []
|
948
|
+
- Das <one>häufigstes Protein auf der Erde</one> (total, in Tonnen Gewicht) <two>ist ... </two>? A: <one>RUBISCO</one>. URL: https://de.wikipedia.org/wiki/RuBisCO []
|
949
|
+
- <one>SDS-coated proteins</one> <two>carry which charge</two>? <one>SDS-coated proteins</one> will <two>carry a negative charge</two>. []
|
950
|
+
- Nenne ein Beispiel für ein <one>Heterotetramer</one>, <two>das für multizelluläre Lebewesen sehr wichtig ist</two>, ja, <three>lebensnotwendig</three>. A: <one>Hämoglobin</one>. URL: https://de.wikipedia.org/wiki/H%C3%A4moglobin []
|
951
|
+
- <one>Wo</one> findet man ein <two>Säureamid</two> in der Biochemie? Die <one>Peptidbindung von Proteinen</one> <two>ist vom Typ eines Säureamid</two>. []
|
952
|
+
- Can <one>water</one> <two>act as a</two> <three>nucleophile</three>? <one>Yes</one>. []
|
953
|
+
- <one>Welche Person</one> stellte die Theorie des <two>induced fit</two> auf? <one>Daniel Koshland</one>. URL: https://en.wikipedia.org/wiki/Daniel_E._Koshland_Jr. []
|
954
|
+
- Nenne <one>ein Beispiel</one> für eine bestimmte <two>gekoppelte Reaktion</two> in Lebewesen. A: Die <one>Hydrolyse von ATP</one> (<two>ATP-Hydrolyse</two>). []
|
955
|
+
- Beim <one>Alpha-Keratin</one> gibt es <two>Mikrofibrille</two> und <two>Protofibrille</two>. Welche Verbindung gibt es zwischen diesen? <one>Vier Protofibrillen</one> bilden <two>eine Mikrofibrille</two> - also ein Verhältnis von <three>4:1</three>). []
|
956
|
+
- Kann <one>Glucose</one> in einen einfacheren Zucker gespalten werden? <two>Wie viele C Atome</two> hat Glucose? A: Nein, da Glucose ein <one>Monosaccharid</one> ist. Glucose ist eine <two>Hexose</two>, und hat <two>6 C Atome</two>. []
|
957
|
+
- Die charakteristische Gruppe einer <one>Fettsäure</one> ist ... ? Eine <one>-COOH Gruppe</one>. URL: https://de.wikipedia.org/wiki/Fetts%C3%A4uren#Nomenklatur_%28cis,_trans,_%CF%89%29 []
|
958
|
+
- <one>Hämoglobin</one> besitzt <two>wieviele Untereinheiten</two>? <one>4</one>. URL: https://de.wikipedia.org/wiki/H%C3%A4moglobin []
|
959
|
+
- <one>Woher</one> kommt die <two>Energie</two> für den <three>Transport von Proteinen in den Zellkern</three>? Aus <one>GTP</one>. []
|
960
|
+
- <one>Somatostatin</one> <two>besteht aus wievielen Aminosäuren</two>? <one>14</one>. URL: https://de.wikipedia.org/wiki/Somatostatin []
|
961
|
+
- How <one>expensive</one>, via specific numbers, is the <two>Lon-Protease</two> <three>in E. coli</three>? <one>2 ATP per peptide bond cleaved</one>. URL: https://en.wikipedia.org/wiki/Lon_protease_family []
|
962
|
+
- <one>Woraus</one> besteht das <two>26S-Proteasom</two> <three>in Eukaryoten</three>? Aus <one>drei Untereinheiten</one> - und zwar einer <two>20S-</two> und zwei <two>19S-Untereinheiten</two>. URL: https://de.wikipedia.org/wiki/Proteasom#Struktur []
|
963
|
+
- Was kann man zu <one>Alpha</one> und <one>Beta Phosphat</one> im <two>ATP Molekül</two> in-vivo sagen? <one>In-vivo</one> liegt <two>ATP</two> immer <one>mit Mg²⁺ cheliert</one> vor (<three>chelated</three>). []
|
964
|
+
- Nenne ein Beispiel für <one>eine Pflanze</one>, die für ihre <two>Herzglykoside</two> <three>berühmt ist</three>. A: <one>Digitalis purpurea</one>. URL: https://de.wikipedia.org/wiki/Roter_Fingerhut []
|
965
|
+
- Welche <one>Superfamilie</one> kann in <two>Alpha-Keratin</two> gefunden werden? Die Familie der <one>coiled-coil Proteine</one>. URL: https://en.wikipedia.org/wiki/Coiled_coil []
|
966
|
+
- Sind <one>Triacylglycerine</one> <two>Bestandteil von Biomembranen</two>? <one>Nein</one>. []
|
967
|
+
- <one>NAD⁺</one> und <one>NADP⁺</one> sind was ...? A: <one>Wasserstoffatomcarrier</one>. []
|
968
|
+
- Was bedeutet das Wort <one>Trypsin</one>? <one>Etwas niederreissen</one>. URL: https://de.wikipedia.org/wiki/Trypsine []
|
969
|
+
- Nenne <one>ein Protein</one>, das als <two>molekulare Feder</two> agieren kann. A: <one>Elastin</one>. URL: https://en.wikipedia.org/wiki/Elastin []
|
970
|
+
- Anderes, englisches Wort für <one>Carbohydrates</one>? <one>Sugars</one>. URL: https://en.wikipedia.org/wiki/Sugar []
|
971
|
+
- Nenne einen <one>Vertreter der Isoprene</one>, dessen Name mit dem Buchstaben <two>D</two> beginnt. A: <one>Dolicholphosphat</one>. (Von Farnesylpyrophosphat zweigt die Produktion von Dolicholphosphat ab.) URL: https://flexikon.doccheck.com/de/Dolicholphosphat []
|
972
|
+
- Nenne <one>drei</one> <two>Proteoglycan-Beispiele</two>. A: (1) <one>Aggrecan</one> (2) <one>Neurocan</one> (3) <one>Versican</one> []
|
973
|
+
- Nenne eine <one>chemische Untergruppe</one>, als Teil des <two>Pyruvat</two>-Moleküls. A: <one>Acetat</one> (<two>-CH₃-C=O</two>). []
|
974
|
+
- <one>Warum</one> verwenden <two>Erythrozyten</two> nur die <three>Glykolyse</three> <four>als Energiequelle</four>? Da <two>Erythrozyten</two> <one>keine Mitochondrien besitzen</one>. []
|
975
|
+
- Andere Bezeichnung für <one>grobe Trennung</one> <two>von Proteinen</two>? <one>Fraktionierung</one>. URL: https://de.wikipedia.org/wiki/Ammoniumsulfat-F%C3%A4llung []
|
976
|
+
- <one>Was geschieht</one> wenn <two>Zuckermoleküle</two> mit einer <three>Säure</three> <four>verestert werden</four>? Diese Zuckermoleküle werden dadurch <one>aktiviert</one>. []
|
977
|
+
- In der <one>Atmungskette der Mitochondrien</one> wandern die Elektronen durch die Atmungskette. <two>Worauf werden die Elektronen am Ende der Atmungskette übertragen</two>? Sie werden auf <one>molekularen Sauerstoff (O₂)</one> übertragen. []
|
978
|
+
- Nenne einen guten, allgemeinen <one>Wasserstoffdonor</one> in der Biochemie. A: <one>NH-Gruppen</one>. []
|
979
|
+
- Nenne ein <one>Zuckerderivat</one> das als <two>Strukturpolysaccharid</two> fungiert. A: <one>Chitin</one>. URL: https://de.wikipedia.org/wiki/Chitin []
|
980
|
+
- Nenne die zwei wichtigsten Eigenschaften von <one>Wachsen</one>. A: (1) ihre <one>Fähigkeit Wasser abzustossen</one> (2) ihre <one>feste Konsistenz</one> []
|
981
|
+
- <one>Mit welchem Vitamin</one> ist <two>TPP</two> (<three>Thiaminpyrophosphat</three>) verwandt? Mit <one>Vitamin B1</one>. URL: https://en.wikipedia.org/wiki/Thiamine []
|
982
|
+
- <one>Pyruvat</one> kann in <two>Acetaldehyd</two> konvertiert werden. <three>Was verliert es dabei</three>? <one>-CO₂</one>. URL: https://de.wikipedia.org/wiki/Acetaldehyd []
|
983
|
+
- Wie wirken sich <one>positive</one>, wie <one>negative</one> Seitenketten auf den <two>isoelektrischen Punkt</two> aus? A: (1) <two>Positive</two> <one>erhöhen</one> den isoelektrischen Punkt. (2) <two>Negative</two> <one>erniedrigen</one> den isoelektrischen Punkt. []
|
984
|
+
- In der Biochemie: was muss mit dem <one>Substrat</one> geschehen <two>damit wir ein umgesetztes Produkt erhalten</two>? Das <one>Substrat</one> muss <two>verspannt</two> werden um aktiviert werden zu können - also <mediumturquoise>in einen instabilen Übergangszustand</mediumturquoise> überführt werden. []
|
985
|
+
- <one>ATP</one> <two>was discovered</two> <three>when</three>? <one>ATP</one> <two>was discovered in the year</two> <three>1929</three>. URL: https://de.wikipedia.org/wiki/Adenosintriphosphat []
|
986
|
+
- Bei der <one>Ubiquitinierung</one> wird das aktivierte Ubiquitin von E2 auf die <two>Epsilon-Aminogruppe</two> eines zuvor gebundenen Proteins. <three>Was entsteht dabei</three>? Eine <one>Isopeptidbindung</one>. URL: https://de.wikipedia.org/wiki/Isopeptidbindung []
|
987
|
+
- Give another word for an <one>amide linkage</one>. A: <one>Peptide Bond</one>. URL: https://en.wikipedia.org/wiki/Peptide_bond []
|
988
|
+
- <one>Dihydroxyacetonphosphat</one> versus <one>Glycerinaldehyd-3-phosphat</one>: <two>welches dieser beiden Moleküle ist stabiler</two>? <one>Dihydroxyacetonphosphat</one> <two>ist stabiler</two>. URL: https://de.wikipedia.org/wiki/Dihydroxyacetonphosphat []
|
989
|
+
- <one>Warum</one> machen <two>Endorphine</two> <three>nicht süchtig</three>? Da <one>Endorphine</one> <two>von Enzymen abgebaut werden</two>. URL: https://de.wikipedia.org/wiki/Endorphine []
|
990
|
+
- Andere Bezeichnung für den <one>ATP-Verbrauch</one>? <one>ATP Hydrolyse</one>. URL: https://de.wikipedia.org/wiki/Adenosintriphosphat []
|
991
|
+
- Im menschlichen Körper: <one>wo</one> wird <two>Laktat</two> abgebaut? In der <one>Leber</one>. []
|
992
|
+
- <one>Protein structure</one> in an <two>immunoglobuline molecule</two>? There are <one>beta sheets everywhere</one>. []
|
993
|
+
- Was ist <one>das wichtigste Steroid in Tieren</one>? <one>Cholesterin</one>. URL: https://de.wikipedia.org/wiki/Cholesterin []
|
994
|
+
- Nenne einen <one>Aminozucker</one>. A: <one>Glucosamin</one>. URL: https://de.wikipedia.org/wiki/Glucosamin []
|
995
|
+
- <one>Where</one> does <two>formation of the disulfide bridges</two> occur, <three>in eukaryotes</three>? Within the <one>lumen of the endoplasmic reticulum</one> - in other words, in the <one>ER lumen</one>. []
|
996
|
+
- <one>Welche Person</one> hat das Wort <two>Protein</two> geprägt? <one>Jacob Berzelius</one>. URL: https://en.wikipedia.org/wiki/J%C3%B6ns_Jacob_Berzelius []
|
997
|
+
- The E. coli protease <one>Lon</one> requires <two>n ATP molecules</two> <three>for every peptide bond cleaved</three>? <one>2 ATP molecules</one> <two>per cleaved peptide bond are necessary</two>. []
|
998
|
+
- Nenne ein <one>Prolinderivat</one>. A: <one>4-Hydroxyprolin</one>. (Mnemonic: Hydro... tetro ... tetra ... 4) URL: https://www.spektrum.de/lexikon/ernaehrung/4-hydroxyprolin/4167 []
|
999
|
+
- Wie kann man <one>künstlich den Abbau eines Proteins erschweren</one>? Durch <one>Anheften einer Acetylgruppe</one> (<two>-C=O-CH₃</two>) <one>am Aminoende</one>. []
|
1000
|
+
- Bei der <one>Ubiquitinierung</one>: <two>woher stammt die Energie</two> <three>beim ersten Schritt</three> des <four>Enzyms E1</four>? Aus <one>ATP</one>. []
|
1001
|
+
- Die <one>Salze und Ester</one> <two>welcher Substanz</two> werden als <three>Pyruvat</three> bezeichnet? <one>Brenztraubensäure</one>. URL: https://de.wikipedia.org/wiki/Brenztraubens%C3%A4ure []
|
1002
|
+
- <one>Wo</one> mögen wir <two>Hydroxyprolin</two> finden? In <one>Kollagen</one>. URL: https://de.wikipedia.org/wiki/Hydroxyprolin []
|
1003
|
+
- Was geschieht wenn <one>Fructane</one> <two>im menschlichen Darm</two> <three>verdaut werden</three>? Gar nichts. <two>Fructane</two> <one>passieren den Magen und Dünndarm unverändert</one>. []
|
1004
|
+
- Was ist die <one>häufigste Brückenart in Proteinen</one>? A: <one>Disulfidbrücken</one>. URL: https://de.wikipedia.org/wiki/Disulfidbr%C3%BCcke []
|
1005
|
+
- Bei der Krankheit <one>PKU</one>: <two>welches Enzym ist hierbei defekt</two>? Die <one>phenylalanine hydroxylase</one>. (Mnemonic: Beide beginnen mit dem Buchstaben <two>P</two>) URL: https://en.wikipedia.org/wiki/Phenylalanine_hydroxylase []
|
1006
|
+
- Nenne <one>zwei Beispiele</one> für <two>ungewöhnliche Didesoxyzucker</two> die mit <three>C</three> respektive <three>T</three> im Namen beginnen. A: (1) <one>Colitose</one> (2) <one>Tyvelose</one> []
|
1007
|
+
- Nenne einen besseren Begriff für das Wort <one>Herzglykoside</one>. A: <one>Herzwirksame Glykoside</one>. URL: https://de.wikipedia.org/wiki/Herzglykoside []
|
1008
|
+
- <one>Phosphopantetheine</one> is an essential prosthetic group of ... <two>which protein</two>? Of <one>acyl carrier protein</one> (<two>ACP</two>) and also of <one>peptidyl carrier proteins</one> (<two>PCP</two>) and <one>aryl carrier proteins</one> (<two>ArCP</two>).
|