studium 0.18.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (821) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +3310 -0
  3. data/bin/all_passed_exams +14 -0
  4. data/bin/check_description_of_these_lectures +7 -0
  5. data/bin/curriculum_module_displayer +7 -0
  6. data/bin/cycle +7 -0
  7. data/bin/d10 +7 -0
  8. data/bin/d100 +7 -0
  9. data/bin/d15 +7 -0
  10. data/bin/d150 +7 -0
  11. data/bin/d20 +7 -0
  12. data/bin/d25 +7 -0
  13. data/bin/d3 +7 -0
  14. data/bin/d30 +7 -0
  15. data/bin/d5 +7 -0
  16. data/bin/determine_curricula +7 -0
  17. data/bin/display_lecture_url +7 -0
  18. data/bin/exam_registration_at +7 -0
  19. data/bin/exam_statistics +7 -0
  20. data/bin/exams_per_month +9 -0
  21. data/bin/finished_exams_at_this_university +7 -0
  22. data/bin/flashcards +7 -0
  23. data/bin/from_curriculum_id_to_university +9 -0
  24. data/bin/location_to_this_exam_topic.rb +7 -0
  25. data/bin/mandatory_continuous_assessment +7 -0
  26. data/bin/mandatory_upcoming_courses +10 -0
  27. data/bin/n_ECTS +7 -0
  28. data/bin/n_exam_questions_already_answered +15 -0
  29. data/bin/names_of_all_solved_exams +7 -0
  30. data/bin/not_completed_exams +7 -0
  31. data/bin/nquestions +7 -0
  32. data/bin/nsolved +7 -0
  33. data/bin/open_last_exam_question_asked_file +7 -0
  34. data/bin/passed_exams +7 -0
  35. data/bin/passed_pr/303/274fungsimmanente_courses +7 -0
  36. data/bin/passed_this_exam_on +10 -0
  37. data/bin/pdf_for +7 -0
  38. data/bin/question_answer +7 -0
  39. data/bin/random_exam_topic +7 -0
  40. data/bin/registered_for_this_exam +15 -0
  41. data/bin/report_solved_topics +7 -0
  42. data/bin/return_n_ects_from_this_file +7 -0
  43. data/bin/return_n_questions_solved_in_total +7 -0
  44. data/bin/rti_conflict +7 -0
  45. data/bin/search_for_n_ects +7 -0
  46. data/bin/show_lectures_on_the_commandline +7 -0
  47. data/bin/show_passed_exams_having_this_grade +7 -0
  48. data/bin/show_themes +7 -0
  49. data/bin/solved +9 -0
  50. data/bin/solved_ects +7 -0
  51. data/bin/studienkennzahl +7 -0
  52. data/bin/studium +7 -0
  53. data/bin/studium_actions +7 -0
  54. data/bin/studium_skeleton +7 -0
  55. data/bin/ufind +7 -0
  56. data/bin/upcoming_exams +7 -0
  57. data/bin/week_parser +7 -0
  58. data/doc/ECTS_CONSIDERATIONS/ECTS_CONSIDERATIONS.md +85 -0
  59. data/doc/HOW_TO_DETERMINE_WHICH_PART_IS_THE_QUESTION_AND_WHICH_PART_IS_THE_ANSWER/HOW_TO_DETERMINE_WHICH_PART_IS_THE_QUESTION_AND_WHICH_PART_IS_THE_ANSWER.md +44 -0
  60. data/doc/README.gen +3263 -0
  61. data/doc/SQL_database_specification/SQL_database_specification.md +46 -0
  62. data/doc/deprecated_components/deprecated_components.md +46 -0
  63. data/doc/documentation_for_the_file_lecture_information/documentation_for_the_file_lecture_information.md +311 -0
  64. data/doc/elegant_colours/elegant_colours.md +21 -0
  65. data/doc/statistics/yearly_statistics.md +8 -0
  66. data/doc/todo/todo_for_the_graphical_parts_of_the_studium_gem_including_www_related_aspects.md +92 -0
  67. data/doc/todo/todo_for_the_studium_gem.md +55 -0
  68. data/img/STUDIES.png +0 -0
  69. data/lib/studium/actions/actions.rb +134 -0
  70. data/lib/studium/autoinclude.rb +7 -0
  71. data/lib/studium/base/base.rb +3554 -0
  72. data/lib/studium/base/commandline_arguments_module/commandline_arguments_module.rb +115 -0
  73. data/lib/studium/base/html_colours_module.rb +632 -0
  74. data/lib/studium/base/runmode_module/runmode_module.rb +103 -0
  75. data/lib/studium/c/README.md +2 -0
  76. data/lib/studium/c/a.out +0 -0
  77. data/lib/studium/c/obtain_random_entry.c +11 -0
  78. data/lib/studium/check_and_sanitize/README.md +15 -0
  79. data/lib/studium/check_and_sanitize/check_curriculum_for_correct_separation_of_bachelor_and_master.rb +141 -0
  80. data/lib/studium/check_and_sanitize/check_for_all_exam_topics_being_registered.rb +118 -0
  81. data/lib/studium/check_and_sanitize/check_for_correct_themes_of_each_course.rb +100 -0
  82. data/lib/studium/check_and_sanitize/check_for_existing_description_of_this_lecture.rb +194 -0
  83. data/lib/studium/check_and_sanitize/check_important_exams.rb +138 -0
  84. data/lib/studium/check_and_sanitize/check_the_lecture_information_file.rb +166 -0
  85. data/lib/studium/check_and_sanitize/correct_all_dates_in_the_file_lecture_information.rb +115 -0
  86. data/lib/studium/check_and_sanitize/date_sanitizer.rb +350 -0
  87. data/lib/studium/check_and_sanitize/find_duplicate_lectures.rb +124 -0
  88. data/lib/studium/check_and_sanitize/missing_priority_entry.rb +44 -0
  89. data/lib/studium/check_and_sanitize/sanitize_lecture_information.rb +434 -0
  90. data/lib/studium/colours/colours.rb +1711 -0
  91. data/lib/studium/commandline/commandline.rb +1848 -0
  92. data/lib/studium/constants/constants.rb +2063 -0
  93. data/lib/studium/css/project.css +273 -0
  94. data/lib/studium/curricula/attribute_lecture_to_curriculum/attribute_boku_lecture_to_curriculum.rb +384 -0
  95. data/lib/studium/curricula/attribute_lecture_to_curriculum/attribute_lecture_to_curriculum.rb +238 -0
  96. data/lib/studium/curricula/curricula_from_this_website/curricula_from_this_website.rb +141 -0
  97. data/lib/studium/curricula/curriculum.rb +213 -0
  98. data/lib/studium/curricula/curriculum_as_string.rb +280 -0
  99. data/lib/studium/curricula/curriculum_module_displayer/constants.rb +33 -0
  100. data/lib/studium/curricula/curriculum_module_displayer/curriculum_module_displayer.rb +417 -0
  101. data/lib/studium/curricula/curriculum_module_displayer/initialize.rb +25 -0
  102. data/lib/studium/curricula/curriculum_module_displayer/menu.rb +45 -0
  103. data/lib/studium/curricula/curriculum_module_displayer/reset.rb +74 -0
  104. data/lib/studium/curricula/curriculum_module_displayer/run.rb +20 -0
  105. data/lib/studium/curricula/curriculum_module_displayer/set_use_this_curriculum.rb +93 -0
  106. data/lib/studium/curricula/curriculum_module_displayer/show_and_report.rb +190 -0
  107. data/lib/studium/curricula/determine_curricula/constants.rb +11 -0
  108. data/lib/studium/curricula/determine_curricula/determine_curricula.rb +36 -0
  109. data/lib/studium/curricula/determine_curricula/help.rb +39 -0
  110. data/lib/studium/curricula/determine_curricula/initialize.rb +48 -0
  111. data/lib/studium/curricula/determine_curricula/menu.rb +151 -0
  112. data/lib/studium/curricula/determine_curricula/misc.rb +403 -0
  113. data/lib/studium/curricula/determine_curricula/report.rb +141 -0
  114. data/lib/studium/curricula/determine_curricula/reset.rb +59 -0
  115. data/lib/studium/curricula/determine_curricula/run.rb +19 -0
  116. data/lib/studium/curricula/determine_elective_courses_in_this_curriculum.rb +112 -0
  117. data/lib/studium/curricula/display_bachelor_curricula.rb +90 -0
  118. data/lib/studium/curricula/handle_curricula/README.md +9 -0
  119. data/lib/studium/curricula/handle_curricula/handle_curricula.rb +99 -0
  120. data/lib/studium/curricula/handle_curricula/misc.rb +798 -0
  121. data/lib/studium/curricula/mitteilungsbl/303/244tter/mitteilungsbl/303/244tter.rb +323 -0
  122. data/lib/studium/curricula/modules/display_on_the_commandline.rb +319 -0
  123. data/lib/studium/curricula/modules/return_n_ects_in_this_module.rb +74 -0
  124. data/lib/studium/curricula/n_percent_solved_in_this_curriculum.rb +73 -0
  125. data/lib/studium/curricula/prepare_individual_curriculum.rb +304 -0
  126. data/lib/studium/curricula/random_curriculum_creator/random_curriculum_creator.rb +164 -0
  127. data/lib/studium/curricula/show_all_unfinished_courses_of_this_curriculum/show_all_unfinished_courses_of_this_curriculum.rb +116 -0
  128. data/lib/studium/curricula/show_lectures_of_this_curriculum.rb +114 -0
  129. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/show_lectures_of_this_curriculum_id.rb +554 -0
  130. data/lib/studium/curricula/show_solved_percentage_among_the_registered_curricula.rb +87 -0
  131. data/lib/studium/curricula/sorted_individual_curricula.rb +121 -0
  132. data/lib/studium/ects/boku_ects_splitter.rb +128 -0
  133. data/lib/studium/ects/ects_per_university/ects_per_university.rb +179 -0
  134. data/lib/studium/ects/ects_scanner.rb +141 -0
  135. data/lib/studium/ects/ects_to_university_parser.rb +142 -0
  136. data/lib/studium/ects/last_entry_is_curriculum.rb +150 -0
  137. data/lib/studium/ects/n_ects_in_these_lectures.rb +196 -0
  138. data/lib/studium/ects/n_ects_points_in_mandatory_presence_courses.rb +47 -0
  139. data/lib/studium/ects/return_n_ects_from_this_file.rb +59 -0
  140. data/lib/studium/ects/return_n_ects_from_this_url.rb +197 -0
  141. data/lib/studium/ects/search_for_n_ects/search_for_n_ects.rb +719 -0
  142. data/lib/studium/ects/show_completed_ects_in_all_curricula.rb +245 -0
  143. data/lib/studium/ects/show_passed_credits_per_curriculum.rb +276 -0
  144. data/lib/studium/ects/simple_total_ects_points.rb +135 -0
  145. data/lib/studium/ects/solved_ects/constants.rb +19 -0
  146. data/lib/studium/ects/solved_ects/reset.rb +50 -0
  147. data/lib/studium/ects/solved_ects/solved_ects.rb +325 -0
  148. data/lib/studium/ects/solved_ects_per_university/reset.rb +25 -0
  149. data/lib/studium/ects/solved_ects_per_university/solved_ects_per_university.rb +116 -0
  150. data/lib/studium/ects/still_missing.rb +129 -0
  151. data/lib/studium/ects/sum_of_ects.rb +144 -0
  152. data/lib/studium/encoding/encoding.rb +109 -0
  153. data/lib/studium/exam_topics/RNAi_siRNA_and_miRNA +100 -0
  154. data/lib/studium/exam_topics/abfall_als_ressource +86 -0
  155. data/lib/studium/exam_topics/advanced_biochemistry +937 -0
  156. data/lib/studium/exam_topics/advanced_biotechnology +234 -0
  157. data/lib/studium/exam_topics/advanced_cellbiology +251 -0
  158. data/lib/studium/exam_topics/advanced_chemistry +547 -0
  159. data/lib/studium/exam_topics/advanced_immunology +225 -0
  160. data/lib/studium/exam_topics/advanced_microbiology +49 -0
  161. data/lib/studium/exam_topics/advanced_topics_in_plant_sciences +117 -0
  162. data/lib/studium/exam_topics/advanced_virology +273 -0
  163. data/lib/studium/exam_topics/ageing +154 -0
  164. data/lib/studium/exam_topics/agrar_ecology +67 -0
  165. data/lib/studium/exam_topics/agrarmarkt +73 -0
  166. data/lib/studium/exam_topics/agrarphysik +35 -0
  167. data/lib/studium/exam_topics/alcohols +30 -0
  168. data/lib/studium/exam_topics/algorithms +104 -0
  169. data/lib/studium/exam_topics/allergie +76 -0
  170. data/lib/studium/exam_topics/allgemeine_genetik +1006 -0
  171. data/lib/studium/exam_topics/allgemeine_mikrobiologie +1012 -0
  172. data/lib/studium/exam_topics/aminoacids +469 -0
  173. data/lib/studium/exam_topics/analytische_chemie_1 +134 -0
  174. data/lib/studium/exam_topics/analytische_chemie_2 +31 -0
  175. data/lib/studium/exam_topics/anatomie +378 -0
  176. data/lib/studium/exam_topics/anorganische_chemie +357 -0
  177. data/lib/studium/exam_topics/anthropologie +239 -0
  178. data/lib/studium/exam_topics/antibodies_and_antigens +790 -0
  179. data/lib/studium/exam_topics/apoptosis +35 -0
  180. data/lib/studium/exam_topics/archaea +112 -0
  181. data/lib/studium/exam_topics/archaeo_viruses +7 -0
  182. data/lib/studium/exam_topics/archaeology +5 -0
  183. data/lib/studium/exam_topics/architecture +8 -0
  184. data/lib/studium/exam_topics/artificial_intelligence +90 -0
  185. data/lib/studium/exam_topics/atomemissionsspektrometrie +6 -0
  186. data/lib/studium/exam_topics/audio +11 -0
  187. data/lib/studium/exam_topics/bacteriophages +266 -0
  188. data/lib/studium/exam_topics/basic_biochemistry +1008 -0
  189. data/lib/studium/exam_topics/basic_biotechnology +1011 -0
  190. data/lib/studium/exam_topics/basic_chemistry +1007 -0
  191. data/lib/studium/exam_topics/basic_virology +1008 -0
  192. data/lib/studium/exam_topics/bauwesen +6 -0
  193. data/lib/studium/exam_topics/betriebssysteme +128 -0
  194. data/lib/studium/exam_topics/betriebswirtschaftslehre +29 -0
  195. data/lib/studium/exam_topics/bioanalytik_und_biosensoren +451 -0
  196. data/lib/studium/exam_topics/biochips +80 -0
  197. data/lib/studium/exam_topics/bioelektrochemie +57 -0
  198. data/lib/studium/exam_topics/biofilms +58 -0
  199. data/lib/studium/exam_topics/bioinformatics +523 -0
  200. data/lib/studium/exam_topics/biological_therapeutics +156 -0
  201. data/lib/studium/exam_topics/biologie +152 -0
  202. data/lib/studium/exam_topics/biomarkers +137 -0
  203. data/lib/studium/exam_topics/biomaterials +90 -0
  204. data/lib/studium/exam_topics/biomedical_studies +16 -0
  205. data/lib/studium/exam_topics/biomembranes +6 -0
  206. data/lib/studium/exam_topics/bionik +65 -0
  207. data/lib/studium/exam_topics/biophysik +34 -0
  208. data/lib/studium/exam_topics/biopolymers +10 -0
  209. data/lib/studium/exam_topics/bioprozesstechnik +149 -0
  210. data/lib/studium/exam_topics/bioressourcenmanagement +78 -0
  211. data/lib/studium/exam_topics/birds +5 -0
  212. data/lib/studium/exam_topics/bodenkunde +384 -0
  213. data/lib/studium/exam_topics/bodenmikrobiologie +40 -0
  214. data/lib/studium/exam_topics/cancerbiology +488 -0
  215. data/lib/studium/exam_topics/cell_cultures +229 -0
  216. data/lib/studium/exam_topics/cellbiology +1011 -0
  217. data/lib/studium/exam_topics/cellular_transport_and_protein_secretion +27 -0
  218. data/lib/studium/exam_topics/cellular_vesicles +11 -0
  219. data/lib/studium/exam_topics/cellulose +6 -0
  220. data/lib/studium/exam_topics/chemische_technologie_anorganischer_stoffe +210 -0
  221. data/lib/studium/exam_topics/chemische_technologie_organischer_stoffe +25 -0
  222. data/lib/studium/exam_topics/chemisches_labor +60 -0
  223. data/lib/studium/exam_topics/chemokines_and_cytokines +45 -0
  224. data/lib/studium/exam_topics/chemotaxis_quorum_sensing_and_motility_in_prokaryotes +116 -0
  225. data/lib/studium/exam_topics/citric_acid_cycle +84 -0
  226. data/lib/studium/exam_topics/clinical_microbiology +520 -0
  227. data/lib/studium/exam_topics/computer_science +309 -0
  228. data/lib/studium/exam_topics/computer_vision_and_computer_graphics +15 -0
  229. data/lib/studium/exam_topics/crispr +51 -0
  230. data/lib/studium/exam_topics/cyanobacteria +45 -0
  231. data/lib/studium/exam_topics/cytogenetics_and_chromosome_biology +598 -0
  232. data/lib/studium/exam_topics/databases_and_sql +126 -0
  233. data/lib/studium/exam_topics/dna_mutation_and_dna_repair +186 -0
  234. data/lib/studium/exam_topics/dna_replication +80 -0
  235. data/lib/studium/exam_topics/ecogenetics +26 -0
  236. data/lib/studium/exam_topics/ecological_agriculture +12 -0
  237. data/lib/studium/exam_topics/ecology +332 -0
  238. data/lib/studium/exam_topics/economy +226 -0
  239. data/lib/studium/exam_topics/electron_microscopy +7 -0
  240. data/lib/studium/exam_topics/elektronenmikroskopie +356 -0
  241. data/lib/studium/exam_topics/elektrophorese +132 -0
  242. data/lib/studium/exam_topics/elektrotechnik_und_elektrizit/303/244t +42 -0
  243. data/lib/studium/exam_topics/elisa +55 -0
  244. data/lib/studium/exam_topics/embryologie_und_entwicklung +657 -0
  245. data/lib/studium/exam_topics/endospores_and_spores +104 -0
  246. data/lib/studium/exam_topics/enzymes_and_cofactors +395 -0
  247. data/lib/studium/exam_topics/epigenetik +188 -0
  248. data/lib/studium/exam_topics/erste_hilfe +414 -0
  249. data/lib/studium/exam_topics/ethik +143 -0
  250. data/lib/studium/exam_topics/evolution_and_evolutionary_genetics +372 -0
  251. data/lib/studium/exam_topics/excel +7 -0
  252. data/lib/studium/exam_topics/fish +19 -0
  253. data/lib/studium/exam_topics/fluorescence_microscopy +10 -0
  254. data/lib/studium/exam_topics/food_microbiology_and_food_biotechnology +92 -0
  255. data/lib/studium/exam_topics/forensik +65 -0
  256. data/lib/studium/exam_topics/forstwirtschaft +53 -0
  257. data/lib/studium/exam_topics/fortgeschrittene_genetik +692 -0
  258. data/lib/studium/exam_topics/fortgeschrittene_gentechnik +221 -0
  259. data/lib/studium/exam_topics/fortgeschrittene_physik +6 -0
  260. data/lib/studium/exam_topics/fungi +119 -0
  261. data/lib/studium/exam_topics/genetische_krankheiten +209 -0
  262. data/lib/studium/exam_topics/genexpression +1008 -0
  263. data/lib/studium/exam_topics/genomics_and_metagenomics +290 -0
  264. data/lib/studium/exam_topics/gentechnik_und_praktische_biochemie +961 -0
  265. data/lib/studium/exam_topics/geochemistry +67 -0
  266. data/lib/studium/exam_topics/geography +9 -0
  267. data/lib/studium/exam_topics/geologie_und_mineralogie +624 -0
  268. data/lib/studium/exam_topics/geometrie +56 -0
  269. data/lib/studium/exam_topics/geschichte +95 -0
  270. data/lib/studium/exam_topics/gluconeogenesis +72 -0
  271. data/lib/studium/exam_topics/glycogen +45 -0
  272. data/lib/studium/exam_topics/glycolysis +118 -0
  273. data/lib/studium/exam_topics/glykomik +131 -0
  274. data/lib/studium/exam_topics/glyoxylatzyklus +31 -0
  275. data/lib/studium/exam_topics/grassland_cultivation +32 -0
  276. data/lib/studium/exam_topics/hormone +152 -0
  277. data/lib/studium/exam_topics/html +8 -0
  278. data/lib/studium/exam_topics/human_ecology +8 -0
  279. data/lib/studium/exam_topics/hygiene +224 -0
  280. data/lib/studium/exam_topics/imaging_and_microscopy +270 -0
  281. data/lib/studium/exam_topics/immunanalytik +94 -0
  282. data/lib/studium/exam_topics/immunologie +1011 -0
  283. data/lib/studium/exam_topics/informatik +117 -0
  284. data/lib/studium/exam_topics/innate_immunity +52 -0
  285. data/lib/studium/exam_topics/insekten +66 -0
  286. data/lib/studium/exam_topics/insulin_and_diabetes +57 -0
  287. data/lib/studium/exam_topics/java +624 -0
  288. data/lib/studium/exam_topics/javascript +29 -0
  289. data/lib/studium/exam_topics/klima +6 -0
  290. data/lib/studium/exam_topics/kryptographie +10 -0
  291. data/lib/studium/exam_topics/landtechnik +26 -0
  292. data/lib/studium/exam_topics/lebensmittel_und_getr/303/244nke +224 -0
  293. data/lib/studium/exam_topics/lebensmitteltechnologie +16 -0
  294. data/lib/studium/exam_topics/light_microscopy +19 -0
  295. data/lib/studium/exam_topics/linux_and_unix +36 -0
  296. data/lib/studium/exam_topics/lipids +145 -0
  297. data/lib/studium/exam_topics/macroeconomics +39 -0
  298. data/lib/studium/exam_topics/marketing +53 -0
  299. data/lib/studium/exam_topics/mathematics +311 -0
  300. data/lib/studium/exam_topics/medizin_und_biomedizinische_technik +254 -0
  301. data/lib/studium/exam_topics/medizinische_chemie_und_pharmazie +441 -0
  302. data/lib/studium/exam_topics/messtechnik_und_regeltechnik +104 -0
  303. data/lib/studium/exam_topics/metabolismus +482 -0
  304. data/lib/studium/exam_topics/meteorologie_und_atmosph/303/244re +120 -0
  305. data/lib/studium/exam_topics/microbial_ecology +37 -0
  306. data/lib/studium/exam_topics/microcontrollers +11 -0
  307. data/lib/studium/exam_topics/mikrobielle_lebensgemeinschaften +58 -0
  308. data/lib/studium/exam_topics/mikrobielle_physiologie +313 -0
  309. data/lib/studium/exam_topics/mitochondria +57 -0
  310. data/lib/studium/exam_topics/mixed +287 -0
  311. data/lib/studium/exam_topics/molecular_biology_of_plants +281 -0
  312. data/lib/studium/exam_topics/molekulare_medizin +133 -0
  313. data/lib/studium/exam_topics/nanotechnologie +456 -0
  314. data/lib/studium/exam_topics/nature_conservation_and_biodiversity +247 -0
  315. data/lib/studium/exam_topics/naturstoffe +9 -0
  316. data/lib/studium/exam_topics/netzwerke +63 -0
  317. data/lib/studium/exam_topics/neuroanatomie +25 -0
  318. data/lib/studium/exam_topics/neurobiology +356 -0
  319. data/lib/studium/exam_topics/nucleotide_sequencing +41 -0
  320. data/lib/studium/exam_topics/nutztierethologie +11 -0
  321. data/lib/studium/exam_topics/object_oriented_modeling +15 -0
  322. data/lib/studium/exam_topics/obstbau +249 -0
  323. data/lib/studium/exam_topics/organische_chemie +1007 -0
  324. data/lib/studium/exam_topics/organische_chemie_2 +137 -0
  325. data/lib/studium/exam_topics/paleobiology +39 -0
  326. data/lib/studium/exam_topics/parasitic_diseases_and_molecular_infection_biology +336 -0
  327. data/lib/studium/exam_topics/patent_law +55 -0
  328. data/lib/studium/exam_topics/pathologie +761 -0
  329. data/lib/studium/exam_topics/pcr +155 -0
  330. data/lib/studium/exam_topics/pentosephosphatweg +61 -0
  331. data/lib/studium/exam_topics/peroxisomes_glycosomes_and_lysosomes +66 -0
  332. data/lib/studium/exam_topics/pflanzenanatomie +262 -0
  333. data/lib/studium/exam_topics/pflanzenbau +24 -0
  334. data/lib/studium/exam_topics/pflanzenschutz +35 -0
  335. data/lib/studium/exam_topics/pflanzenwissenschaften +1009 -0
  336. data/lib/studium/exam_topics/pharmaceutical_biotechnology +252 -0
  337. data/lib/studium/exam_topics/physik +449 -1
  338. data/lib/studium/exam_topics/physikalische_chemie +79 -0
  339. data/lib/studium/exam_topics/physiology_and_histology +592 -0
  340. data/lib/studium/exam_topics/phytochemie +33 -0
  341. data/lib/studium/exam_topics/plant_biotechnology +132 -0
  342. data/lib/studium/exam_topics/plant_breeding +64 -0
  343. data/lib/studium/exam_topics/plant_development +50 -0
  344. data/lib/studium/exam_topics/populationsgenetik +143 -0
  345. data/lib/studium/exam_topics/posttranslationale_modifikation_von_proteinen +198 -0
  346. data/lib/studium/exam_topics/programming +41 -0
  347. data/lib/studium/exam_topics/projektmanagement +226 -0
  348. data/lib/studium/exam_topics/prokaryote_genetics +587 -0
  349. data/lib/studium/exam_topics/protein_engineering +35 -0
  350. data/lib/studium/exam_topics/proteolyse +39 -0
  351. data/lib/studium/exam_topics/proteomik +42 -0
  352. data/lib/studium/exam_topics/protozoans +24 -0
  353. data/lib/studium/exam_topics/prozesstechnik +95 -0
  354. data/lib/studium/exam_topics/psychologie +21 -0
  355. data/lib/studium/exam_topics/python +391 -0
  356. data/lib/studium/exam_topics/quality_management +266 -0
  357. data/lib/studium/exam_topics/rechtsgrundlagen +126 -0
  358. data/lib/studium/exam_topics/research_topics_in_immunobiology +42 -0
  359. data/lib/studium/exam_topics/rna_and_dna +535 -0
  360. data/lib/studium/exam_topics/rna_seq +13 -0
  361. data/lib/studium/exam_topics/robotics +12 -0
  362. data/lib/studium/exam_topics/ruby +240 -0
  363. data/lib/studium/exam_topics/ruby_on_rails +63 -0
  364. data/lib/studium/exam_topics/scientific_writing_and_publishing +38 -0
  365. data/lib/studium/exam_topics/semisynthese_von_proteinen_und_nukleotiden +120 -0
  366. data/lib/studium/exam_topics/sexualbiologie +327 -0
  367. data/lib/studium/exam_topics/signal_transduction_and_laser_systems +215 -0
  368. data/lib/studium/exam_topics/sozialbiologie +17 -0
  369. data/lib/studium/exam_topics/soziologie +5 -0
  370. data/lib/studium/exam_topics/splicing_exons_and_introns +67 -0
  371. data/lib/studium/exam_topics/sport_und_sportverletzungen +6 -0
  372. data/lib/studium/exam_topics/statistik +306 -0
  373. data/lib/studium/exam_topics/stemcells +182 -0
  374. data/lib/studium/exam_topics/stickstofffixierung +91 -0
  375. data/lib/studium/exam_topics/structural_bioinformatics +54 -0
  376. data/lib/studium/exam_topics/strukturbiologie +445 -0
  377. data/lib/studium/exam_topics/system_biology_and_synthetic_biology +108 -0
  378. data/lib/studium/exam_topics/systematische_zoologie +446 -0
  379. data/lib/studium/exam_topics/technical_ecology +144 -0
  380. data/lib/studium/exam_topics/technik +5 -0
  381. data/lib/studium/exam_topics/technische_chemie +208 -0
  382. data/lib/studium/exam_topics/technische_grundlagen_der_informatik +43 -0
  383. data/lib/studium/exam_topics/technische_mikrobiologie +393 -0
  384. data/lib/studium/exam_topics/technisches_zeichnen +5 -0
  385. data/lib/studium/exam_topics/the_bacterial_cell_wall +98 -0
  386. data/lib/studium/exam_topics/the_c_plus_plus_programming_language +531 -0
  387. data/lib/studium/exam_topics/the_c_programming_language +133 -0
  388. data/lib/studium/exam_topics/the_cellcycle +102 -0
  389. data/lib/studium/exam_topics/the_european_union +121 -0
  390. data/lib/studium/exam_topics/the_interferon_system +40 -0
  391. data/lib/studium/exam_topics/the_microbiome +164 -0
  392. data/lib/studium/exam_topics/the_universe +32 -0
  393. data/lib/studium/exam_topics/theoretische_chemie +5 -0
  394. data/lib/studium/exam_topics/theoretische_informatik +161 -0
  395. data/lib/studium/exam_topics/thermodynamics +21 -0
  396. data/lib/studium/exam_topics/tierzucht +139 -0
  397. data/lib/studium/exam_topics/toxikologie +508 -0
  398. data/lib/studium/exam_topics/transcription +188 -0
  399. data/lib/studium/exam_topics/translation_ribosomes_and_translational_control +155 -0
  400. data/lib/studium/exam_topics/umweltbiotechnologie +64 -0
  401. data/lib/studium/exam_topics/umweltchemie +233 -0
  402. data/lib/studium/exam_topics/urbanism_and_traffic +19 -0
  403. data/lib/studium/exam_topics/urea_cycle +56 -0
  404. data/lib/studium/exam_topics/vaccines_and_vaccination +253 -0
  405. data/lib/studium/exam_topics/vectors_and_gene_therapy +247 -0
  406. data/lib/studium/exam_topics/verfahrenstechnik +37 -0
  407. data/lib/studium/exam_topics/verhaltensbiologie +79 -0
  408. data/lib/studium/exam_topics/veterinary_medicine +10 -0
  409. data/lib/studium/exam_topics/vitamine +32 -0
  410. data/lib/studium/exam_topics/wasserkunde +144 -0
  411. data/lib/studium/exam_topics/weinbau +86 -0
  412. data/lib/studium/exam_topics/wissenschaft +20 -0
  413. data/lib/studium/exam_topics/yeast +104 -0
  414. data/lib/studium/exam_topics/zoologie +338 -0
  415. data/lib/studium/exams/afterburn/afterburn.rb +304 -0
  416. data/lib/studium/exams/ask_exam_from_the_upcoming_exams_pool.rb +150 -0
  417. data/lib/studium/exams/ask_exam_topic_question.rb +112 -0
  418. data/lib/studium/exams/ask_question_from_alias.rb +141 -0
  419. data/lib/studium/exams/ask_question_from_any_of_the_still_missing_lectures.rb +130 -0
  420. data/lib/studium/exams/ask_question_from_grouped_themes.rb +141 -0
  421. data/lib/studium/exams/ask_question_from_last_topic.rb +91 -0
  422. data/lib/studium/exams/ask_random_question.rb +195 -0
  423. data/lib/studium/exams/autoinclude.rb +7 -0
  424. data/lib/studium/exams/average_grade/average_grade.rb +404 -0
  425. data/lib/studium/exams/csv/create_csv_passed_exams_file.rb +217 -0
  426. data/lib/studium/exams/cycle.rb +291 -0
  427. data/lib/studium/exams/dataset/dataset.rb +126 -0
  428. data/lib/studium/exams/designate_ten_random_exam_topics/designate_ten_random_exam_topics.rb +88 -0
  429. data/lib/studium/exams/exam/exam.rb +130 -0
  430. data/lib/studium/exams/exam_bubble/exam_bubble.rb +444 -0
  431. data/lib/studium/exams/exam_bubble/menu_for_the_main_loop.rb +111 -0
  432. data/lib/studium/exams/exam_question/README.md +3 -0
  433. data/lib/studium/exams/exam_question/exam_question.rb +434 -0
  434. data/lib/studium/exams/exam_registration_at/constants.rb +49 -0
  435. data/lib/studium/exams/exam_registration_at/exam_registration_at.rb +242 -0
  436. data/lib/studium/exams/exam_registration_at/help.rb +46 -0
  437. data/lib/studium/exams/exam_registration_at/menu.rb +81 -0
  438. data/lib/studium/exams/exam_registration_at/report_and_show.rb +133 -0
  439. data/lib/studium/exams/exam_registration_at/reset.rb +54 -0
  440. data/lib/studium/exams/exam_statistics_from_this_file/exam_statistics_from_this_file.rb +119 -0
  441. data/lib/studium/exams/exam_topics.rb +194 -0
  442. data/lib/studium/exams/exams.rb +20 -0
  443. data/lib/studium/exams/exams_per_month/exams_per_month.rb +2442 -0
  444. data/lib/studium/exams/exams_this_week.rb +182 -0
  445. data/lib/studium/exams/fix_exam_dates.rb +121 -0
  446. data/lib/studium/exams/frozen.rb +36 -0
  447. data/lib/studium/exams/last_exams/last_exams.rb +479 -0
  448. data/lib/studium/exams/lectures_without_exam_entry.rb +137 -0
  449. data/lib/studium/exams/mandatory_continuous_assessment/mandatory_continuous_assessment.rb +1358 -0
  450. data/lib/studium/exams/move_all_unsolved_exam_questions_to_the_top_of_the_file.rb +173 -0
  451. data/lib/studium/exams/move_the_last_exam_question_to_the_top_of_the_file/move_the_last_exam_question_to_the_top_of_the_file.rb +111 -0
  452. data/lib/studium/exams/n_exams_in_these_topics.rb +477 -0
  453. data/lib/studium/exams/next_exam.rb +106 -0
  454. data/lib/studium/exams/next_exams.rb +378 -0
  455. data/lib/studium/exams/not_completed/README.md +5 -0
  456. data/lib/studium/exams/not_completed/not_completed.rb +143 -0
  457. data/lib/studium/exams/open_exam_associated_url/open_exam_associated_url.rb +154 -0
  458. data/lib/studium/exams/open_last_exam_question_asked_file/constants.rb +15 -0
  459. data/lib/studium/exams/open_last_exam_question_asked_file/initialize.rb +29 -0
  460. data/lib/studium/exams/open_last_exam_question_asked_file/open_last_exam_question_asked_file.rb +110 -0
  461. data/lib/studium/exams/push_solved_questions_on_top.rb +180 -0
  462. data/lib/studium/exams/question_answer/question_answer.rb +2936 -0
  463. data/lib/studium/exams/questions_solved_from_day_to_day/questions_solved_from_day_to_day.rb +379 -0
  464. data/lib/studium/exams/remote_ftp_url.rb +52 -0
  465. data/lib/studium/exams/repeat_last_question.rb +78 -0
  466. data/lib/studium/exams/report_total_amount_of_questions_and_answers_for.rb +116 -0
  467. data/lib/studium/exams/show_all_passed_exams_of_this_university.rb +252 -0
  468. data/lib/studium/exams/show_backlog_of_exams/show_backlog_of_exams.rb +114 -0
  469. data/lib/studium/exams/show_exams_for/show_exams_for.rb +172 -0
  470. data/lib/studium/exams/show_themes/constants.rb +28 -0
  471. data/lib/studium/exams/show_themes/menu.rb +61 -0
  472. data/lib/studium/exams/show_themes/misc.rb +538 -0
  473. data/lib/studium/exams/show_themes/reset.rb +62 -0
  474. data/lib/studium/exams/show_themes/show_themes.rb +27 -0
  475. data/lib/studium/exams/show_upcoming_exams/show_upcoming_exams.rb +1537 -0
  476. data/lib/studium/exams/solve_all_questions_from_this_topic.rb +114 -0
  477. data/lib/studium/exams/solved/solved.rb +434 -0
  478. data/lib/studium/exams/timetable/constants.rb +142 -0
  479. data/lib/studium/exams/timetable/timetable.rb +448 -0
  480. data/lib/studium/exams/unsolve_all_questions_from_this_topic.rb +163 -0
  481. data/lib/studium/exams/upcoming_exams/upcoming_exams.rb +555 -0
  482. data/lib/studium/exams/upcoming_exams_at_the_boku/constants.rb +23 -0
  483. data/lib/studium/exams/upcoming_exams_at_the_boku/html.rb +64 -0
  484. data/lib/studium/exams/upcoming_exams_at_the_boku/upcoming_exams_at_the_boku.rb +194 -0
  485. data/lib/studium/exams/upcoming_exams_dataset.rb +247 -0
  486. data/lib/studium/exams/upcoming_registered_exams/upcoming_registered_exams.rb +257 -0
  487. data/lib/studium/exams/upload_exam_topics.rb +360 -0
  488. data/lib/studium/graphviz/README.md +4 -0
  489. data/lib/studium/graphviz/bachelor_vector_based_strategies.dot +160 -0
  490. data/lib/studium/graphviz/master_vector_based_strategies.dot +46 -0
  491. data/lib/studium/gui/gtk3/control_panel/control_panel.rb +40 -0
  492. data/lib/studium/gui/gtk3/lecture_information/lecture_information.rb +191 -0
  493. data/lib/studium/gui/java/exam_question/ExamQuestion$1.class +0 -0
  494. data/lib/studium/gui/java/exam_question/ExamQuestion.class +0 -0
  495. data/lib/studium/gui/java/exam_question/ExamQuestion.java +215 -0
  496. data/lib/studium/gui/javafx/exam_question_widget/exam_question_widget.rb +58 -0
  497. data/lib/studium/gui/jruby/exam_trainer/exam_trainer.rb +637 -0
  498. data/lib/studium/gui/jruby/show_upcoming_exams/show_upcoming_exams.rb +85 -0
  499. data/lib/studium/gui/libui/ask_exam_question/ask_exam_question.rb +347 -0
  500. data/lib/studium/gui/shared_code/control_panel/control_panel_module.rb +305 -0
  501. data/lib/studium/gui/shared_code/exam_trainer/exam_trainer_widget_module.rb +0 -0
  502. data/lib/studium/gui/shared_code/information_about_a_lecture/information_about_a_lecture_module.rb +0 -0
  503. data/lib/studium/gui/shared_code/show_upcoming_exams/show_upcoming_exams_module.rb +129 -0
  504. data/lib/studium/gui/universal_widgets/curriculum_viewer/curriculum_viewer.rb +549 -0
  505. data/lib/studium/gui/universal_widgets/ects_per_university/ects_per_university.rb +302 -0
  506. data/lib/studium/gui/universal_widgets/exam_trainer/exam_trainer.config +6 -0
  507. data/lib/studium/gui/universal_widgets/exam_trainer/exam_trainer.rb +3266 -0
  508. data/lib/studium/gui/universal_widgets/exam_trainer/manifest.yml +12 -0
  509. data/lib/studium/gui/universal_widgets/expand_time_range/expand_time_range.rb +309 -0
  510. data/lib/studium/gui/universal_widgets/information_about_a_lecture/information_about_a_lecture.rb +242 -0
  511. data/lib/studium/gui/universal_widgets/show_upcoming_exams/show_upcoming_exams.rb +252 -0
  512. data/lib/studium/images/libui_ask_exam_question.png +0 -0
  513. data/lib/studium/images/outdated.png +0 -0
  514. data/lib/studium/images/small_logos/DNA.png +0 -0
  515. data/lib/studium/images/small_logos/README.md +2 -0
  516. data/lib/studium/images/small_logos/solved.png +0 -0
  517. data/lib/studium/images/studies_favicon.png +0 -0
  518. data/lib/studium/java/README.md +5 -0
  519. data/lib/studium/java/studium/AskExamQuestion.java +461 -0
  520. data/lib/studium/java/studium/Base.java +123 -0
  521. data/lib/studium/java/studium/Constants.java +122 -0
  522. data/lib/studium/java/studium/EnsureThatTheLogDirectoryExists.java +57 -0
  523. data/lib/studium/java/studium/Mkdir.java +13 -0
  524. data/lib/studium/java/studium/OpenLastExamQuestionurlLinkViaTheBrowser.java +90 -0
  525. data/lib/studium/java/studium/ReturnNQuestionsSolvedInTotal.java +69 -0
  526. data/lib/studium/java/studium/Solved.java +112 -0
  527. data/lib/studium/java/studium/Test.java +60 -0
  528. data/lib/studium/java/studium/studium/AskExamQuestion.class +0 -0
  529. data/lib/studium/java/studium/studium/Base.class +0 -0
  530. data/lib/studium/java/studium/studium/Constants.class +0 -0
  531. data/lib/studium/java/studium/studium/EnsureThatTheLogDirectoryExists.class +0 -0
  532. data/lib/studium/java/studium/studium/Mkdir.class +0 -0
  533. data/lib/studium/java/studium/studium/OpenLastExamQuestionurlLinkViaTheBrowser.class +0 -0
  534. data/lib/studium/java/studium/studium/ReturnNQuestionsSolvedInTotal.class +0 -0
  535. data/lib/studium/java/studium/studium/Solved.class +0 -0
  536. data/lib/studium/java/studium/studium/Test.class +0 -0
  537. data/lib/studium/jobs/jobs.rb +80 -0
  538. data/lib/studium/logging/README.md +2 -0
  539. data/lib/studium/logging/ensure_that_the_log_directory_exists.rb +58 -0
  540. data/lib/studium/logging/html_log_directory.rb +42 -0
  541. data/lib/studium/logging/log_directory.rb +112 -0
  542. data/lib/studium/logging/store_last_question_asked_into_file.rb +138 -0
  543. data/lib/studium/parsers/README.md +2 -0
  544. data/lib/studium/parsers/custom_exam_results_parser.rb +209 -0
  545. data/lib/studium/parsers/parse_remote_lecture.rb +331 -0
  546. data/lib/studium/project/project.rb +88 -0
  547. data/lib/studium/requires/common_popular_requires.rb +37 -0
  548. data/lib/studium/requires/commonly_used_requires.rb +14 -0
  549. data/lib/studium/requires/require_class_exams_solved.rb +7 -0
  550. data/lib/studium/requires/require_ects_scripts.rb +27 -0
  551. data/lib/studium/requires/require_encoding.rb +7 -0
  552. data/lib/studium/requires/require_the_check_and_sanitize_files.rb +31 -0
  553. data/lib/studium/requires/require_the_curricula_files.rb +28 -0
  554. data/lib/studium/requires/require_the_exam_question_class.rb +7 -0
  555. data/lib/studium/requires/require_the_exams_files.rb +46 -0
  556. data/lib/studium/requires/require_the_logging_files.rb +23 -0
  557. data/lib/studium/requires/require_the_parsers.rb +28 -0
  558. data/lib/studium/requires/require_the_studium_constants.rb +7 -0
  559. data/lib/studium/requires/require_the_studium_project.rb +72 -0
  560. data/lib/studium/requires/require_the_toplevel_methods.rb +27 -0
  561. data/lib/studium/requires/require_the_utility_scripts.rb +34 -0
  562. data/lib/studium/requires/require_upcoming_exams.rb +7 -0
  563. data/lib/studium/requires/require_yaml.rb +7 -0
  564. data/lib/studium/requires/return_remote_homepage_of_this_lecture.rb +7 -0
  565. data/lib/studium/requires/with_GUI.rb +13 -0
  566. data/lib/studium/requires/www_mode.rb +17 -0
  567. data/lib/studium/statistics/README.md +4 -0
  568. data/lib/studium/statistics/best_exam_months.rb +92 -0
  569. data/lib/studium/statistics/curriculum_comparer/curriculum_comparer.rb +423 -0
  570. data/lib/studium/statistics/determine_exam_statistics_from_this_file.rb +142 -0
  571. data/lib/studium/statistics/exam_topics_that_are_about_to_be_completed.rb +117 -0
  572. data/lib/studium/statistics/max_stats.rb +169 -0
  573. data/lib/studium/statistics/new_questions_per_year.rb +147 -0
  574. data/lib/studium/statistics/report_how_many_ects_points_per_curriculum_were_completed.rb +167 -0
  575. data/lib/studium/statistics/report_how_many_exam_questions_were_answered.rb +473 -0
  576. data/lib/studium/statistics/show_exam_statistics.rb +75 -0
  577. data/lib/studium/statistics/show_which_courses_are_in_a_bachelor_or_master_curriculum_respectively.rb +104 -0
  578. data/lib/studium/statistics/top_stats.rb +126 -0
  579. data/lib/studium/toplevel_methods/e_and_esystem.rb +34 -0
  580. data/lib/studium/toplevel_methods/find_exam_topic_and_exam_title.rb +3986 -0
  581. data/lib/studium/toplevel_methods/install_the_project_on_the_given_hostsystem.rb +31 -0
  582. data/lib/studium/toplevel_methods/return_remote_homepage_of_this_lecture.rb +11611 -0
  583. data/lib/studium/toplevel_methods/return_remote_moodle_link_of_this_lecture.rb +2405 -0
  584. data/lib/studium/toplevel_methods/roebe.rb +16 -0
  585. data/lib/studium/toplevel_methods/runmode.rb +45 -0
  586. data/lib/studium/toplevel_methods/toplevel_methods.rb +7295 -0
  587. data/lib/studium/universities_in_austria/README.md +2 -0
  588. data/lib/studium/universities_in_austria/boku/README.md +4 -0
  589. data/lib/studium/universities_in_austria/boku/boku_/303/266ffnungszeiten.rb +28 -0
  590. data/lib/studium/universities_in_austria/boku/show_three_pillars_of_these_lectures.rb +110 -0
  591. data/lib/studium/universities_in_austria/boku/three_pillars.rb +237 -0
  592. data/lib/studium/universities_in_austria/tu_vienna/README.md +6 -0
  593. data/lib/studium/universities_in_austria/tu_vienna/tu_ferien.rb +42 -0
  594. data/lib/studium/universities_in_austria/tu_vienna/tu_/303/266ffnungszeiten.rb +34 -0
  595. data/lib/studium/university_course/university_course.rb +409 -0
  596. data/lib/studium/utility_scripts/attribute_lectures_to_university/attribute_lectures_to_university.rb +375 -0
  597. data/lib/studium/utility_scripts/audio_stats.rb +171 -0
  598. data/lib/studium/utility_scripts/auto_stud/auto_stud.rb +252 -0
  599. data/lib/studium/utility_scripts/auto_stud/constants.rb +18 -0
  600. data/lib/studium/utility_scripts/auto_stud/initialize.rb +23 -0
  601. data/lib/studium/utility_scripts/auto_stud/misc.rb +18 -0
  602. data/lib/studium/utility_scripts/autogeneration/autogeneration.rb +158 -0
  603. data/lib/studium/utility_scripts/autopurge_this_lecture_date.rb +100 -0
  604. data/lib/studium/utility_scripts/average_grade_of_this_curriculum.rb +153 -0
  605. data/lib/studium/utility_scripts/blocked_courses.rb +146 -0
  606. data/lib/studium/utility_scripts/calendar/README.md +2 -0
  607. data/lib/studium/utility_scripts/calendar/calendar.rb +251 -0
  608. data/lib/studium/utility_scripts/calendar/misc.rb +35 -0
  609. data/lib/studium/utility_scripts/check_description_of_these_lectures.rb +221 -0
  610. data/lib/studium/utility_scripts/course_registrations/course_registrations.rb +98 -0
  611. data/lib/studium/utility_scripts/courses/courses.rb +177 -0
  612. data/lib/studium/utility_scripts/create/README.md +2 -0
  613. data/lib/studium/utility_scripts/create/webpage_of_university.rb +129 -0
  614. data/lib/studium/utility_scripts/create/webpage_of_university_BOKU.rb +61 -0
  615. data/lib/studium/utility_scripts/create/webpage_of_university_TU.rb +60 -0
  616. data/lib/studium/utility_scripts/create/webpage_of_university_UniWien.rb +60 -0
  617. data/lib/studium/utility_scripts/create_database/create_database.rb +126 -0
  618. data/lib/studium/utility_scripts/current_lectures_belonging_to_both_bachelor_and_master_curriculum.rb +113 -0
  619. data/lib/studium/utility_scripts/currently_participating_in_these_lectures/currently_participating_in_these_lectures.rb +104 -0
  620. data/lib/studium/utility_scripts/display_lecture_url/display_lecture_url.rb +176 -0
  621. data/lib/studium/utility_scripts/expand_time_range/expand_time_range.rb +521 -0
  622. data/lib/studium/utility_scripts/finished_exams_at_this_university/finished_exams_at_this_university.rb +171 -0
  623. data/lib/studium/utility_scripts/foreign_language_percentage/constants.rb +23 -0
  624. data/lib/studium/utility_scripts/foreign_language_percentage/foreign_language_percentage.rb +149 -0
  625. data/lib/studium/utility_scripts/foreign_language_percentage/help.rb +31 -0
  626. data/lib/studium/utility_scripts/foreign_language_percentage/initialize.rb +25 -0
  627. data/lib/studium/utility_scripts/foreign_language_percentage/menu.rb +158 -0
  628. data/lib/studium/utility_scripts/foreign_language_percentage/report.rb +62 -0
  629. data/lib/studium/utility_scripts/foreign_language_percentage/reset.rb +50 -0
  630. data/lib/studium/utility_scripts/foreign_language_percentage/run.rb +19 -0
  631. data/lib/studium/utility_scripts/generate_spreadsheet/generate_spreadsheet.rb +353 -0
  632. data/lib/studium/utility_scripts/generate_spreadsheet/misc.rb +144 -0
  633. data/lib/studium/utility_scripts/holidays/holidays.rb +154 -0
  634. data/lib/studium/utility_scripts/homepage_of_these_courses/homepage_of_these_courses.rb +125 -0
  635. data/lib/studium/utility_scripts/lectures_attributed_to_universities/lectures_attributed_to_universities.rb +336 -0
  636. data/lib/studium/utility_scripts/lva_dates_of_the_important_courses.rb +111 -0
  637. data/lib/studium/utility_scripts/lva_nummer/lva_nummer.rb +427 -0
  638. data/lib/studium/utility_scripts/mandatory_lectures_in_this_month/mandatory_lectures_in_this_month.rb +316 -0
  639. data/lib/studium/utility_scripts/moodle/moodle.rb +214 -0
  640. data/lib/studium/utility_scripts/name_of_this_lva_id/name_of_this_lva_id.rb +110 -0
  641. data/lib/studium/utility_scripts/new_stud.rb +324 -0
  642. data/lib/studium/utility_scripts/next_week/next_week.rb +103 -0
  643. data/lib/studium/utility_scripts/not_yet_registered/not_yet_registered.rb +120 -0
  644. data/lib/studium/utility_scripts/open_last_exam_question_url_link_via_the_browser.rb +76 -0
  645. data/lib/studium/utility_scripts/passed_ects_per_year/passed_ects_per_year.rb +313 -0
  646. data/lib/studium/utility_scripts/passed_pr/303/274fungsimmanente_courses/passed_pr/303/274fungsimmanente_courses.rb +181 -0
  647. data/lib/studium/utility_scripts/pdf/README.md +2 -0
  648. data/lib/studium/utility_scripts/pdf/create_pdf_file_for_this_exam_topic.rb +352 -0
  649. data/lib/studium/utility_scripts/pdf/hexapdf_support.rb +50 -0
  650. data/lib/studium/utility_scripts/preparatory_meetings/preparatory_meetings.rb +317 -0
  651. data/lib/studium/utility_scripts/priority/priority.rb +164 -0
  652. data/lib/studium/utility_scripts/priority_points/priority_points.rb +261 -0
  653. data/lib/studium/utility_scripts/publish_my_exams/publish_my_exams.rb +174 -0
  654. data/lib/studium/utility_scripts/regexes/README.md +1 -0
  655. data/lib/studium/utility_scripts/regexes/generate_regex.rb +314 -0
  656. data/lib/studium/utility_scripts/regexes/generate_regexes_for_the_available_moodle_links.rb +55 -0
  657. data/lib/studium/utility_scripts/regexes/generate_regexes_for_the_registered_lectures.rb +48 -0
  658. data/lib/studium/utility_scripts/report_outdated_timetable_entries/report_outdated_timetable_entries.rb +142 -0
  659. data/lib/studium/utility_scripts/report_whether_this_lecture_is_registered_in_the_file_lecture_information/report_whether_this_lecture_is_registered_in_the_file_lecture_information.rb +129 -0
  660. data/lib/studium/utility_scripts/resolve_practical_courses_date_conflicts/individual_resolve_practical_courses_date_conflicts.rb +254 -0
  661. data/lib/studium/utility_scripts/resolve_practical_courses_date_conflicts/resolve_practical_courses_date_conflicts.rb +265 -0
  662. data/lib/studium/utility_scripts/scrape_remote_university_url.rb +138 -0
  663. data/lib/studium/utility_scripts/semester_schedule_creator/semester_container.rb +144 -0
  664. data/lib/studium/utility_scripts/semester_schedule_creator/semester_schedule_creator.rb +373 -0
  665. data/lib/studium/utility_scripts/semesterplaner/semesterplaner.rb +311 -0
  666. data/lib/studium/utility_scripts/set_aliases_based_on_this_file.rb +96 -0
  667. data/lib/studium/utility_scripts/show_all_passed_master_lectures/show_all_passed_master_lectures.rb +126 -0
  668. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/show_conflicting_lva_lectures.rb +1385 -0
  669. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/constants.rb +23 -0
  670. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/menu.rb +63 -0
  671. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/reset.rb +33 -0
  672. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/run.rb +50 -0
  673. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/show_descriptions_of_lectures_belonging_to_this_module.rb +145 -0
  674. data/lib/studium/utility_scripts/show_lecturers/show_lecturers.rb +147 -0
  675. data/lib/studium/utility_scripts/show_lectures/show_lectures.rb +906 -0
  676. data/lib/studium/utility_scripts/show_lectures_fitting_to_this_language/show_lectures_fitting_to_this_language.rb +121 -0
  677. data/lib/studium/utility_scripts/show_lectures_fitting_to_this_theme/show_lectures_fitting_to_this_theme.rb +105 -0
  678. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/show_lectures_on_the_commandline.rb +3160 -0
  679. data/lib/studium/utility_scripts/show_lectures_on_this_day/show_lectures_on_this_day.rb +150 -0
  680. data/lib/studium/utility_scripts/show_lva_dates_of_this_lecture/show_lva_dates_of_this_lecture.rb +182 -0
  681. data/lib/studium/utility_scripts/show_mixed_bachelor_master_courses/show_mixed_bachelor_master_courses.rb +92 -0
  682. data/lib/studium/utility_scripts/show_outdated_lva_dates/show_outdated_lva_dates.rb +214 -0
  683. data/lib/studium/utility_scripts/show_passed_exams_having_this_grade/show_passed_exams_having_this_grade.rb +91 -0
  684. data/lib/studium/utility_scripts/show_solved_english_lectures/show_solved_english_lectures.rb +139 -0
  685. data/lib/studium/utility_scripts/steop/README.md +4 -0
  686. data/lib/studium/utility_scripts/steop/show_all_steop_lectures.rb +93 -0
  687. data/lib/studium/utility_scripts/steop/steop_lectures_in_this_curriculum.rb +284 -0
  688. data/lib/studium/utility_scripts/steop/steop_lva_dates.rb +119 -0
  689. data/lib/studium/utility_scripts/studienkennzahl/studienkennzahl.rb +116 -0
  690. data/lib/studium/utility_scripts/studium_skeleton/studium_skeleton.rb +241 -0
  691. data/lib/studium/utility_scripts/stundenplan.rb +600 -0
  692. data/lib/studium/utility_scripts/sync_studium_relevant_entries_one_level_downwards.rb +217 -0
  693. data/lib/studium/utility_scripts/ufind/ufind.rb +106 -0
  694. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/constants.rb +26 -0
  695. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/run.rb +20 -0
  696. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/upcoming_mandatory_presence_courses.rb +187 -0
  697. data/lib/studium/utility_scripts/video_lecture_downloader/video_lecture_downloader.rb +107 -0
  698. data/lib/studium/utility_scripts/week_parser/constants.rb +23 -0
  699. data/lib/studium/utility_scripts/week_parser/help.rb +32 -0
  700. data/lib/studium/utility_scripts/week_parser/menu.rb +59 -0
  701. data/lib/studium/utility_scripts/week_parser/misc.rb +373 -0
  702. data/lib/studium/utility_scripts/week_parser/reset.rb +65 -0
  703. data/lib/studium/utility_scripts/week_parser/run.rb +18 -0
  704. data/lib/studium/utility_scripts/week_parser/show.rb +236 -0
  705. data/lib/studium/utility_scripts/week_parser/week_parser.rb +49 -0
  706. data/lib/studium/utility_scripts/weekday_parser.rb +155 -0
  707. data/lib/studium/utility_scripts/weekly_schedule.rb +198 -0
  708. data/lib/studium/utility_scripts/wochenplanung/wochenplanung.rb +267 -0
  709. data/lib/studium/version/version.rb +46 -0
  710. data/lib/studium/www/exams/exams.cgi +54 -0
  711. data/lib/studium/www/fast_ask_exam_question/fast_ask_exam_question.cgi +156 -0
  712. data/lib/studium/www/handle_curricula/handle_curricula.cgi +154 -0
  713. data/lib/studium/www/next_generation_exam_question_trainer/next_generation_exam_question_trainer.cgi +112 -0
  714. data/lib/studium/www/next_generation_exam_question_trainer/solved.cgi +26 -0
  715. data/lib/studium/www/sinatra/app.rb +231 -0
  716. data/lib/studium/www/sinatra/curriculum_displayer/curriculum_displayer.rb +162 -0
  717. data/lib/studium/www/sinatra/misc.rb +115 -0
  718. data/lib/studium/www/statistics/statistics.cgi +82 -0
  719. data/lib/studium/www/upcoming_exams/upcoming_exams.cgi +36 -0
  720. data/lib/studium/yaml/ad_hoc_trainer/README.md +2 -0
  721. data/lib/studium/yaml/ad_hoc_trainer/exam_topics.md +22 -0
  722. data/lib/studium/yaml/allowed_themes_for_courses/allowed_themes_for_courses.yml +348 -0
  723. data/lib/studium/yaml/array_allowed_entries_for_the_file_lecture_information/array_allowed_entries_for_the_file_lecture_information.yml +71 -0
  724. data/lib/studium/yaml/available_exam_topics/available_exam_topics.yml +234 -0
  725. data/lib/studium/yaml/backlog_of_exams.yml +37 -0
  726. data/lib/studium/yaml/colours/custom_colours.yml +50 -0
  727. data/lib/studium/yaml/colours/use_colours.yml +1 -0
  728. data/lib/studium/yaml/current_exams.yml +30 -0
  729. data/lib/studium/yaml/curricula/README.md +39 -0
  730. data/lib/studium/yaml/curricula/bachelor/bachelor_agrarwissenschaften_033255.yml +147 -0
  731. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_basisblock_033630.yml +71 -0
  732. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_botanik_033630.yml +100 -0
  733. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_ecology_033630.yml +74 -0
  734. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_mikrobiologie_und_genetik_033630.yml +122 -0
  735. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_molekulare_biologie_033630.yml +106 -0
  736. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_zoologie_033630.yml +87 -0
  737. data/lib/studium/yaml/curricula/bachelor/bachelor_chemie_033662.yml +165 -0
  738. data/lib/studium/yaml/curricula/bachelor/bachelor_dummy_curriculum.yml +182 -0
  739. data/lib/studium/yaml/curricula/bachelor/bachelor_elektrotechnik_und_informationstechnik_033235.yml +13 -0
  740. data/lib/studium/yaml/curricula/bachelor/bachelor_forstwirtschaft_033225.yml +115 -0
  741. data/lib/studium/yaml/curricula/bachelor/bachelor_informatik_033521.yml +134 -0
  742. data/lib/studium/yaml/curricula/bachelor/bachelor_ktww_033231.yml +84 -0
  743. data/lib/studium/yaml/curricula/bachelor/bachelor_lmbt_033217.yml +121 -0
  744. data/lib/studium/yaml/curricula/bachelor/bachelor_medizinische_informatik_033533.yml +283 -0
  745. data/lib/studium/yaml/curricula/bachelor/bachelor_molekularbiologie_033665.yml +95 -0
  746. data/lib/studium/yaml/curricula/bachelor/bachelor_nutrition_science_033638.yml +119 -0
  747. data/lib/studium/yaml/curricula/bachelor/bachelor_pharmazie_033305.yml +170 -0
  748. data/lib/studium/yaml/curricula/bachelor/bachelor_technische_chemie_033290.yml +131 -0
  749. data/lib/studium/yaml/curricula/bachelor/bachelor_technische_informatik_033535.yml +23 -0
  750. data/lib/studium/yaml/curricula/bachelor/bachelor_ubrm_033227.yml +142 -0
  751. data/lib/studium/yaml/curricula/bachelor/bachelor_verfahrenstechnik_033273.yml +167 -0
  752. data/lib/studium/yaml/curricula/bachelor/bachelor_wirtschaftsinformatik_033526.yml +29 -0
  753. data/lib/studium/yaml/curricula/experimental/bachelor_informatik_in_den_lebenswissenschaften.yml +137 -0
  754. data/lib/studium/yaml/curricula/individual/bachelor_formale_logik.yml +88 -0
  755. data/lib/studium/yaml/curricula/individual/bachelor_informatik_und_molekulare_biologie.yml +1161 -0
  756. data/lib/studium/yaml/curricula/individual/bachelor_vector_based_strategies_in_life_sciences_molecular_medicine_and_biotechnology.yml +1157 -0
  757. data/lib/studium/yaml/curricula/individual/master_bioinformatics_and_nanobiotechnology_in_molecular_medicine.yml +306 -0
  758. data/lib/studium/yaml/curricula/individual/master_vector_based_strategies_in_life_sciences_molecular_medicine_and_biotechnology.yml +741 -0
  759. data/lib/studium/yaml/curricula/master/master_bioinformatik_066875.yml +75 -0
  760. data/lib/studium/yaml/curricula/master/master_biologie_molekulare_mikrobiologie_mikrobielle_oekologie_und_immunbiologie_066830.yml +78 -0
  761. data/lib/studium/yaml/curricula/master/master_biologische_chemie_066863.yml +66 -0
  762. data/lib/studium/yaml/curricula/master/master_dummy_curriculum.yml +197 -0
  763. data/lib/studium/yaml/curricula/master/master_genetik_und_entwicklungsbiologie_066877.yml +89 -0
  764. data/lib/studium/yaml/curricula/master/master_lmbt_066418.yml +112 -0
  765. data/lib/studium/yaml/curricula/master/master_molecular_biology_066865.yml +72 -0
  766. data/lib/studium/yaml/curricula/master/master_molekulare_biologie_066834.yml +151 -0
  767. data/lib/studium/yaml/curricula/master/master_pharmazie_066605.yml +176 -0
  768. data/lib/studium/yaml/curricula/master/master_technische_chemie_066490.yml +123 -0
  769. data/lib/studium/yaml/curricula/outdated/master_bioinformatics_and_molecular_biotechnology_including_aspects_from_molecular_medicine.yml +438 -0
  770. data/lib/studium/yaml/curricula/outdated/master_food_science_and_plant_biotechnology.yml +31 -0
  771. data/lib/studium/yaml/curricula.yml +562 -0
  772. data/lib/studium/yaml/daily_questions_solved/daily_questions_solved.yml +2019 -0
  773. data/lib/studium/yaml/daily_questions_solved/daily_questions_solved.yml~ +1983 -0
  774. data/lib/studium/yaml/default_delay.yml +4 -0
  775. data/lib/studium/yaml/default_encoding.yml +1 -0
  776. data/lib/studium/yaml/directory_to_the_exam_topics.yml +0 -0
  777. data/lib/studium/yaml/editor.yml +1 -0
  778. data/lib/studium/yaml/exams/next_exams_to_do.md +9 -0
  779. data/lib/studium/yaml/file_for_exam_questions.yml +1 -0
  780. data/lib/studium/yaml/german/README.md +2 -0
  781. data/lib/studium/yaml/german/german_to_english_month_names.yml +16 -0
  782. data/lib/studium/yaml/grouped_themes/grouped_themes.yml +264 -0
  783. data/lib/studium/yaml/holidays/holidays.yml +201 -0
  784. data/lib/studium/yaml/important_exams.yml +286 -0
  785. data/lib/studium/yaml/inscription_dates_of_universities.yml +60 -0
  786. data/lib/studium/yaml/lecture_aliases.yml +138 -0
  787. data/lib/studium/yaml/lecture_information/lecture_information.yml +66145 -0
  788. data/lib/studium/yaml/log_dir.yml +1 -0
  789. data/lib/studium/yaml/main_topic/main_topic.yml +11 -0
  790. data/lib/studium/yaml/max_stats/max_stats.yml +262 -0
  791. data/lib/studium/yaml/max_stats.yml +263 -0
  792. data/lib/studium/yaml/meta_themes +1 -0
  793. data/lib/studium/yaml/mitbelegung/README.md +4 -0
  794. data/lib/studium/yaml/mitbelegung/mitbelegung.yml +21 -0
  795. data/lib/studium/yaml/mitteilungsbl/303/244tter/mitteilungsbl/303/244tter.yml +363 -0
  796. data/lib/studium/yaml/n_total_questions.yml +1 -0
  797. data/lib/studium/yaml/rename_konsole_tab.yml +1 -0
  798. data/lib/studium/yaml/roebe/ad_hoc_exam_topics.md +19 -0
  799. data/lib/studium/yaml/roebe/sommersemester_2024_opportunities.md +441 -0
  800. data/lib/studium/yaml/semester_planner/README.md +4 -0
  801. data/lib/studium/yaml/semester_planner/semester_planner.yml +189 -0
  802. data/lib/studium/yaml/show_topic.yml +1 -0
  803. data/lib/studium/yaml/statistics/lecture_information.yml +1 -0
  804. data/lib/studium/yaml/statistics/max_stats.yml +239 -0
  805. data/lib/studium/yaml/statistics/statistics.yml +77 -0
  806. data/lib/studium/yaml/week/01_monday.yml +25 -0
  807. data/lib/studium/yaml/week/02_tuesday.yml +68 -0
  808. data/lib/studium/yaml/week/03_wednesday.yml +63 -0
  809. data/lib/studium/yaml/week/04_thursday.yml +20 -0
  810. data/lib/studium/yaml/week/05_friday.yml +31 -0
  811. data/lib/studium/yaml/week/06_saturday.yml +16 -0
  812. data/lib/studium/yaml/week/07_sunday.yml +0 -0
  813. data/lib/studium/yaml/week/README.md +10 -0
  814. data/lib/studium.rb +5 -0
  815. data/studium.gemspec +82 -0
  816. data/test/testing_colourized_question_and_answer.rb +18 -0
  817. data/test/testing_studium.rb +244 -0
  818. data/test/testing_studium_base_class.rb +31 -0
  819. data/test/testing_the_file_lecture_information.rb +18 -0
  820. data/test/testing_time_component.rb +29 -0
  821. metadata +1042 -0
@@ -0,0 +1,1011 @@
1
+ # =========================================================================== #
2
+ # === Cellbiology Tag
3
+ #
4
+ # Cellbio tag. Cell Tag. Cel tag. Zell Tag. Celltag. Zellbiologie tag.
5
+ # Zellbio tag. Akt tag. Aktuell tag.
6
+ # Cell2 tag (wird eventuell später geändert).
7
+ # Zellbiologie tierischer Zellen.
8
+ #
9
+ # Alles über den Zellzyklus wird in einer separaten Datei gesammelt.
10
+ # =========================================================================== #
11
+
12
+ - Wenn <one>eine Zellmembran nur bestimmte Ionen durchlässt</one>, <two>wie nennen wir dieses Phänomen</two>? <one>Selektive Permeabilität</one>. URL: https://de.wikipedia.org/wiki/Selektive_Permeabilit%C3%A4t []
13
+ - What is meant with the abbreviation <one>Tyr-P</one>? This refers to <one>a phosphorylated tyrosine</one>. URL: https://en.wikipedia.org/wiki/Tyrosine []
14
+ - <one>Which three main pathways</one> are <two>involved in autophagy</two>? (1) Macroautophagy (2) <one>Microautophagy</one> (3) <one>Chaperone-mediate autophagy (CMA)</one>
15
+ - The <one>cell's library</one> is ... ? <one>DNA</one>. []
16
+ - Which <one>cellular phenomenon</one> <two>was first discovered</two> in <three>C. elegans</three>? <one>Apoptosis</one>. URL: https://en.wikipedia.org/wiki/Apoptosis []
17
+ - Wofür steht die Abkürzung <one>ERES</one> in der Zellbiologie? <one>ER export sites</one>. URL: https://pubmed.ncbi.nlm.nih.gov/30304445/ []
18
+ - <one>Wo</one> genau spalten die <two>Caspasen</two>? Spezifisch <one>hinter</one> <two>Aspartatresten</two>. URL: https://de.wikipedia.org/wiki/Caspasen []
19
+ - <one>Wo</one> spalten <two>Caspasen</two>? <one>Hinter</one> einem <two>Aspartat</two>. URL: https://de.wikipedia.org/wiki/Caspasen []
20
+ - <one>Taxol</one> <two>bindet an welche Tubulin-Form</two>? <one>Taxol</one> bindet an <two>Beta-Tubulin</two>, <two>anstelle von GTP</two>. URL: https://de.wikipedia.org/wiki/Paclitaxel []
21
+ - Das <one>Zellweger-Syndrom</one> beruht auf ...? <one>Mutationen in den Genen</one>, <two>die für die Entstehung von Peroxisomen erforderlich sind</two>.
22
+ - <one>Hohe Apertur</one>, <two>niedrige Auflösung</two>? <one>Nein</one>! <two>Hohe Apertur</two>, <three>gute Auflösung</three>. []
23
+ - In der Zellbiologie: was heißt <one>ICAM</one>? <one>Intercellular adhesion molecule</one>. URL: https://en.wikipedia.org/wiki/Intercellular_adhesion_molecule
24
+ - <one>FtsZ</one> ähnelt in Eukarya was? <one>Tubulin</one>. URL: https://de.wikipedia.org/wiki/Zellteilungsprotein_FtsZ []
25
+ - <one>Durchmesser</one> eines <two>clathrin triskelion polyhedral lattice</two>? <one>80nm</one>. []
26
+ - Die <one>RNA Helicasen</one> können im zellulären Kontext was machen? Sie können <one>RNA binding proteins</one> von der RNA lösen.
27
+ - Durch <one>Anreicherung nicht abbaufähiger Materialien in der Zelle</one> entstehen ...? <one>Residualkörper</one>. []
28
+ - <one>Dynamin</one> <two>uses which energy source</two>? <one>GTP</one>. URL: https://en.wikipedia.org/wiki/Dynamin []
29
+ - How is the <one>interior of the ER</one> called? <one>lumen</one> - <two>ER lumen</two>. []
30
+ - Andere Bezeichnung für <one>three-layered</one>? <one>Trilaminar</one>. URL: https://en.wiktionary.org/wiki/trilaminar []
31
+ - Bis etwa 1970 wurde in der Cytologie das <one>Feulgen reagent</one> verwendet. Welche Farbe hat dies? Ein <one>dunkles rot</one>.
32
+ - Nenne <one>drei Vertreter</one> des <two>Endomembransystems</two>. A: (1) <one>Golgi</one> (2) <one>Endoplasmatisches Retikulum</one> (3) <one>Lysosom</one>
33
+ - A <one>cell</one> <two>becomes committed by a process called ... </two>? <one>Determination</one>. []
34
+ - <one>Ferroptosis</one> is <two>a type of programmed cell death</two>. <three>In this type, we can see the accumulation of ... </three>? <one>lipid peroxides</one>. TODO: ADD MISSING URL HERE.
35
+ - Durchmesser der <one>Porine</one>? <one>1 nm</one>. URL: https://de.wikipedia.org/wiki/Porine
36
+ - Wie kann <one>Autophagie</one> (ein <two>degradation process</two>) <three>induziert werden</three>? Durch <one>Hungern</one> (= <two>starvation</two>).
37
+ - In microscopy: what are <one>chromophore groups</one>? <one>Groups</one> <two>with conjugated double bonds</two> that give the dye its color.
38
+ - <one>Why</one> do the <two>osteoclasts</two> need <three>acid</three>? <one>Acid</one> helps osteoclasts <two>dissolve the bone minerals</two>.
39
+ - <one>Glucose transport</one> <two>in a cell</two> <three>is connected to which gradient</three>? <one>Na⁺ Gradient</one>.
40
+ - Die Synthese <one>cytoplasmatischer Proteine</one> erfolgt ...? An <one>nichtmembran-assoziierten Ribosomen</one>.
41
+ - What is <one>negative staining</one>? The <one>background</one> <two>but not the cell</two> <one>is stained</one>. Unstained cells appear as bright objects against a dark background.
42
+ - In cellbiology: we may see something called <one>Endo H</one>. <two>What is this</two>? This is the enzyme <one>Endoglycosidase H</one>.
43
+ - <one>COPII-coated vesicles</one> <two>go from→to</two>? From <one>ER → Golgi</one>.
44
+ - <one>How much</one> of the <two>ER</two> comprises of <three>newly-synthesized proteins</three>? Only about <one>1%</one>.
45
+ - In der Zellbiologie: was heißt <one>ERGIC</one>? <one>ER-Golgi intermediate compartment</one>.
46
+ - Was ist die <one>Glykokalyx</one>? Die Gesamtheit der Zuckerketten an der extrazellulären Zelloberfläche.
47
+ - Give <one>two hormone-examples</one> <two>for vesicular proteins</two>. A: (1) <one>insulin</one> (2) erythropoietin (EPO)
48
+ - In der Zellbiologie: was ist das <one>Retromer</one>? Das <one>Retromer</one> ist ein Komplex an Proteinen die wichtig sind für die Wiederverwendung von <two>transmembrane receptors</two>, von Endosomen hin zum trans-Golgi network (TGN).
49
+ - <one>Rab Proteins</one> <two>are anchored on two cysteins in their C-terminus</two> <three>through which group</three>? Through <one>prenyl groups</one>.
50
+ - In cellbiology: what is an <one>organotypic culture</one>? This is the case when cells are grown in a <one>three-dimensional (3-D) environment</one>.
51
+ - Was ist mit dem Begriff <one>zelluläre Proteinsortierung</one> gemeint? Wenn die Zelle <one>unterscheidet</one> wohin ein Protein geschickt werden soll.
52
+ - Was heißt <one>EDTA</one> und wozu setzt man es in der Zellbiologie ein? <one>EDTA</one> heißt <two>Ethylendiamintetraacetid acid</two>. Es bindet Ca2⁺ Ionen, die wiederum für Zell-Zell Adhesionskontakte wichtig sind. Das Zell-Gewebe kann daraufhin leichter getrennt werden.
53
+ - Name <one>three</one> <two>biogenesis strategies</two> for making a new organelle (duplication). A: (1) de novo nucleation growth (2) templated assembly/growth (3) growth/fission
54
+ - Ein <one>schnelles</one> <two>Protein</two> <three>benötigt für die Durchquerung des Zellkerns wie lange</three>? <one>Wenige Minuten</one>.
55
+ - The <one>signal sequence of a protein</one> is related to folding in what way? It may <one>interfere</one> with the folding process.
56
+ - <one>Welche Reaktion</one> führt die <two>Luciferase</two> genau durch? Nenne Input und Output. A: <one>Luciferin</one> + <one>ATP</one> + O2 ←→ <two>Oxyluciferin</two> + AMP + CO2.
57
+ - <one>Proteins</one> <two>have different half-lives</two>. <three>What determines the half-life of a protein</three>? The <one>amino acids present at the N-terminus</one>.
58
+ - Was wird im <one>smooth endoplasmic reticulum</one> <two>gebildet</two>? <one>Lipide</one> werden hier gebildet. URL: https://en.wikipedia.org/wiki/Endoplasmic_reticulum#Smooth_endoplasmic_reticulum
59
+ - Eine <one>typische Eukaryotenzelle</one> <two>besitzt wieviele Proteasome</two> (also pro Zelle)? <one>30.000</one>.
60
+ - Microscopy is very important in cell biology. We can see the <one>refractive index</one> here. <two>If we see a value such as 1.33, which is indicative of water, what does this mean</two>? That <one>light travels 1.33 times slower in water than it does in a vacuum</one>.
61
+ - Name <one>the three most commonly used scaffolds</one> <two>for 3D cultures</two>. A: (1) <one>Agarose</one> (2) <one>Collagen</one> (3) <one>Fibronectin</one>
62
+ - <one>Fibroblasts</one> <two>secrete what</two>? <one>Collagen</one>.
63
+ - What is the major task of the <one>cis-Golgi network</one>? The <one>cis-Golgi network</one> receives the biosynthetic output from the ER.
64
+ - How are the <one>specialized domains</one> <two>in cell membranes</two> called? <one>Lipid rafts</one>.
65
+ - Der <one>Proteingehalt einer bakteriellen Zelle</one> <two>beträgt etwa n Prozent der Trockenmasse</two> (es reicht ein Wert, der innerhalb des Intervalls liegt)? Etwa <one>50-60% der Trockenmasse</one>.
66
+ - What is <one>ferroptosis</one>? <one>Ferroptosis</one> is <two>a type of programmed cell death</two> <three>dependent on iron</three>.
67
+ - What are <one>cathepsins</one> and <two>where are they activated</two>? <one>Cathepsins</one> are <two>proteases</two> which <three>become activated at the low pH found in Lysosomes</three>.
68
+ - Within the cell, the <one>centromeres</one> <two>play a critical and very important role where exactly</two>? In the <one>segregation of chromosomes</one>.
69
+ - Name the three Ras Proteins in humans. A: (1) H-Ras (2) K-Ras (3) <one>N-Ras</one>
70
+ - <one>What functions</one> do the <two>Synaptotagmins</two> have? They <one>function as calcium sensors</one> in the regulation of neurotransmitter release and hormone secretion.
71
+ - <one>Wo</one> <two>innerhalb einer Zelle</two> kann <three>Phosphoanhydrid</three> gefunden werden? In <one>ATP-Molekülen</one>.
72
+ - <one>Cyclin-dependent kinases</one> <two>are a subclass of</two> <three>... which family</three>? They belong to the <one>serine</one>/<one>threonine protein kinases</one>.
73
+ - Within a cell, <one>ArfGAP1</one> <two>contains motifs</two> <three>which specifically bind to ...</three>? <one>Small liposomes</one>.
74
+ - Most <one>laminopathies</one> (== <two>diseases of the lamina</two>) <three>are associated with ...</three>, in a cellular context? A mutant version of lamin A.
75
+ - <one>Phagosomes</one> have <two>diameters</two> that are determined by what exactly? The <one>diameters</one> <two>are determined</two> by the <three>size of the ingested particle</three>. In fact, <four>a phagosome can be almost as large as the phagocytic cell itself</four>!
76
+ - Is <one>autophagy</one> useful only for <two>organelle turnover</two>? No - <one>it can also help protect an organism against intracellular threats</one>, such as <two>invading bacteria</two>.
77
+ - <one>Which</one> <two>tubulin-subunits</two> are known? (1) <one>Alpha-Tubulin</one> (2) <one>Beta-Tubulins</one> (3) <one>Gamma-Tubulins</one>
78
+ - Name <one>a protein</one> <two>that requires a large vesicle for its transport</two>. A: <one>Collagen</one>.
79
+ - Nenne <one>drei Beispiele</one> für <two>Nucleoside</two>. A: (1) <one>Cytidin</one> (2) <one>Uridin</one> (3) <one>Guanosin</one>
80
+ - <one>Nebulin</one> is <two>an actin-binding protein</two>. It is a very large protein. <three>Up to how many actin monomers can Nebulin bind</three>? It can bind bind up to as many as <one>200 actin monomers</one>.
81
+ - <one>Wie lange</one> dauert die <two>S-Phase</two> in einer Säugetierzelle (von-bis)? <one>10-12 Stunden</one>.
82
+ - <one>Welche Zellen</one> <two>reparieren Skelettmuskelfasern</two>? <one>Satellitenzellen</one>.
83
+ - The protein <one>synaptotagmin</one> binds what? <one>Calcium</one> - in particular the <two>C2-domain</two>. URL: https://en.wikipedia.org/wiki/Synaptotagmin
84
+ - <one>What exactly</one> is the backbone in <two>phosphoglycerides</two>? The 3-carbon <one>glycerol</one> is the backbone.
85
+ - Warum der Name <one>F-Aktin</one> und <one>G-Aktin</one>? (1) <one>F-Aktin</one>: <two>filamentöses Aktin</two> (2) <one>G-Aktin</one>: <two>globuläres Aktin</two>
86
+ - Name <one>an ER-resident protein</one> that begins with the letter <two<P</two>. A: <one>Protein disulfide isomerase</one> (<two>PPI</two>).
87
+ - <one>Woraus</one> besteht <two>ein einzelnes Tubulin-Molekül</two>? Es handelt sich hierbei um ein <one>Heterodimer</one>, bestehend aus <two>Alpha</two> und <two>Beta-Tubulin</two>.
88
+ - In <one>multicellular, eukaryotic cells</one>: what is the most prominent cell cycle stage, e. .g the one that is used most often by eukaryotic cells? The <one>G0-phase</one>. URL: https://en.wikipedia.org/wiki/G0_phase
89
+ - Nenne etwas bemerkenswertes bei <one>Mikrotubuli</one> und Genexpression? <one>Mikrotubuli</one> <two>bestehen aus zwei Untereinheiten</two>. Diese Untereinheiten werden gekoppelt exprimiert.
90
+ - Name <one>three</one> <two>functional classification</two> of <three>cell junctions</three>. A: (1) <one>occluding junctions</one> (2) <one>anchoring junctions</one> (3) <one>communicating junctions</one>
91
+ - In cellbiology: we have an abbreviation called <one>Cvt</one>. Why this weird name? <one>Cvt</one> means <two>Cytoplasm vacuole targeting</two>. It is sometimes called <three>Cytoplasm-to-vacuole targeting</three>, which may be confusing. URL: https://en.wikipedia.org/wiki/Cytoplasm-to-vacuole_targeting
92
+ - <one>In which stage</one> <two>of the cell cycle</two> can we readily mark a cell with <three>radioactive thymidine</three>? In the <one>S phase</one>.
93
+ - <one>5-Methylcytosin</one> ist methyliert, und <two>kann über eine Oxidation</two> in welche drei anderen Nukleotide konvertiert werden? (1) <one>5-Hydroxymethylcytosin</one> (<two>hmC</two>) (2) <one>5'-Formylcytosin</one> (<two>fC</two>) (3) <one>5'-Carboxycytosin</one> (<two>caC</two>)
94
+ - Wenn ein <one>Aktinfilament</one> <two>gecapped</two> wird, was bedeutet das für das Wachstum? Das Wachstum dieses Aktinfilaments kommt zum Erliegen.
95
+ - Was heißt <one>GPI-anchor</one>? <one>Glycophosphatidylinositol anchor</one>. URL: https://en.wikipedia.org/wiki/Glycosylphosphatidylinositol
96
+ - <one>What happens</one> when <two>the balance</two> between cell proliferation and elimination goes awry? <one>Cancer</one> <two>may form</two>, aka be initiated.
97
+ - Die <one>Phospholipid-Synthese</one> <two>erfolgt wo in der Zelle</two>? An <one>der cytosolischen Seite der glatten ER-Membran</one>.
98
+ - A <one>typical animal cell</one> is <two>n µm in diameter</two>. A: <one>10-20 µm in diameter</one>.
99
+ - What does <one>the enzyme</one> <two>guanylate cyclase</two> <three>produce</three>? <one>cGMP</one>, which is <two>cyclic GMP</two>, synthesized from GTP. URL: https://de.wikipedia.org/wiki/Cyclisches_Guanosinmonophosphat
100
+ - Name <one>one general way</one> to inhibit translation. A: <one>Make use of a microRNA</one>.
101
+ - Nenne <one>drei</one> <two>allgemeine Funktionen der Mikrotubuli</two>. A: (1) <one>Formerhalt der Zelle</one> (2) <one>Geißeln</one> (3) Bewegung der Chromosomen bei der Mitose
102
+ - <one>Wie</one> kann <two>bewiesen</two> werden, das sich Membranproteine lateral in der Membran bewegen können? Indem wir humane und Maus-Zellen fusionieren. Es kommt dadurch zum Durchmischen artspezifischer Proteine.
103
+ - <one>Which three components</one> are required for <two>a human artificial chromosome</two>? (1) <one>centromere</one> (2) <one>telomeres</one> (3) <one>origin of replication</one>
104
+ - Nenne <one>vier Phospholipide</one>, die <two>in einer Membran vorgefunden werden können</two>. A: (1) <one>Phosphatidylcholin</one> (PC) (2) Phosphatidylserin (PS) (3) Phosphatidylinositol (PI) (4) Phosphatidylethanolamin (PE)
105
+ - <one>Warum</one> sieht das <two>rauhe Endoplasmatische Reticulum</two> so aus wie es aussieht? Da <one>mehrere Ribosomen</one> dort zu sehen sind.
106
+ - In a <one>hepatocyte</one>: name <two>the two major constituents</two> belonging to an intracellular compartment, in regards to the <three>total cell volume</three>. A: (1) <one>Cytosol</one> (<two>54%</two>) (2) <one>Mitochondria</one> (<two>22%</two>)
107
+ - Die <one>Bax-Proteine</one> werden <two>durch welches Protein freigesetzt</two>? <one>p53</one>.
108
+ - What is the function of the <one>ECM</one> (<one>extracellular matrix</one>)? The <one>ECM</one> <two>ties cells together</two>, enabling them to <three>form complex tissues</three>. URL: https://en.wikipedia.org/wiki/Extracellular_matrix
109
+ - <one>Nanodiscs</one> <two>are surrounded by ...</two>? A <one>belt of proteins</one>.
110
+ - Betreffend die <one>stoffliche Zusammensetzung einer Säugetierzelle</one> - <two>wieviel % Wasseranteil</two> hat eine solche Zelle, in etwa? <one>70%</one>.
111
+ - <one>Wie</one> sind <two>die Mikrotubuli</two> in einer nicht-polarisierten Zelle verteilt? Die Plus-Enden befinden sich nahe an der Zellmembran, die Minus-Enden eher in der Mitte der Zelle.
112
+ - What is a <one>chromocyte</one>? A <one>chromocyte</one> is <two>any cell that contains a pigment, especially red blood cells</two>. URL: https://en.wiktionary.org/wiki/chromocyte
113
+ - The <one>focal adhesion kinase</one> (FAK) is <two>constitutively associated with</two> ... <three>which subunit of integrins</three>? With the <one>β-integrin</one>. URL: https://en.wikipedia.org/wiki/PTK2#Regulation
114
+ - Define <one>transmembrane proteins</one>. A: These are <one>proteins</one> <two>that span the lipid bilayer</two>.
115
+ - Was ist das <one>major cargo protein</one> im zellulären <two>Cvt Pathway</two>? <one>Aminopeptidase I</one> (<two>Ape1</two>).
116
+ - <one>Inter-organellar connections</one> <two>depend on ...</two> which act as tethers to bridge the respective organelle membranes. A: <one>interacting proteins</one>.
117
+ - What is <one>the general role of Gamma-Tubulin</one>? Gamma-Tubulin is involved in the nucleation of microtubule growth.
118
+ - Nenne <one>drei verschiedene Plastid-Typen</one> <two>in alphabetischer Reihenfolge</two>. A: (1) <one>Chloroplasten</one> (2) <one>Chromoplasten</one> (3) <one>Leukoplasten</one>
119
+ - In cell biology: <one>what happens</one> <two>if a late endosome combines with a lysosome</two>? An <one>autolysosome</one> is created.
120
+ - <one>Wie</one> erfolgt <two>der Import</two> <three>von NLS-haltigen Proteinen</three>? Durch <one>Importin Alpha</one> und <one>Importin Beta</one>.
121
+ - Was passiert mit <one>Glykoproteinen</one> die <two>phosphorylierte Mannosereste</two> aufweisen? Sie <one>werden</one> <two>in die Lysosomen</two> <one>transportiert</one>.
122
+ - Durchmesser eukaryotischer Zellkerne (von-bis, in Mikrometer)? A: 5-20 Mikrometer.
123
+ - <one>Microtubules</one> <two>are made of which protein</two>? <one>Tubulin</one>.
124
+ - <one>Wieviele Billionen Zellen</one> besitzt <two>ein adulter Mensch</two> in etwa? <one>37.2 Billionen Zellen</one>.
125
+ - The <one>GTP</one> bound to Beta-tubulin may be hydrolyzed to GDP shortly after assembly. What is the effect of this? <one>New dimers</one> are added to the Tubulin-Structure.
126
+ - Sind <one>Centrioles</one> wichtig? <one>Ja</one> - <two>Centrioles</two> organisieren die <three>mitotic spindle</three>.
127
+ - <one>Where</one> can <two>Plasmalogens</two> <three>be commonly found</three>? They can be found in cell membranes in the nervous systems.
128
+ - <one>Integral membrane proteins</one> can be categorized as <two>type I</two> and <two>type II</two>. <three>What is the difference there</three>? (1) <one>Type I</one>: these have their C-terminus towards the cytoplasm. (2) <one>Type II</one>: these have their N-terminus towards the cytosol.
129
+ - Name <one>the two major roles</one> that <two>autophagy</two> has. A: (1) to remove damaged organelles and macromolecules (2) to recycle amino acids during periods of starvation
130
+ - <one>Why</one> is <one>CO₂</one> <two>used for Live Imaging</two>? Because <one>this will yield a buffer</one> (CO2/HCO3⁻).
131
+ - <one>Receptor-mediated endocytosis</one> <two>is initiated how</two>? When a specific ligand binds to receptors that are present on the cell surface.
132
+ - <one>Nitric oxide</one> <two>can activate what inside of a cell</two>? The <one>guanylyl cyclase</one>.
133
+ - What are <one>Neocentromeres</one> and <two>how do they originate</two>? <one>Neocentromeres</one> are <two>ectopic centromeres that originate occasionally from noncentromeric regions of chromosomes</two>.
134
+ - <one>Wann</one> wurde <two>NLS</two> entdeckt und wo findet man sie? Die NLS-Sequenze wurde im Jahre <one>1982 entdeckt</one>; am C-Terminus befindlich. Sie kann jedoch auch an anderer Stelle der Peptidkette auftauchen.
135
+ - What kind of information can we gain by <one>Endo H Cleavage</one>? <one>Endoglycosidase H</one> <two>can cleave certain oligosaccharide structures</two>. Later oligosaccharide structures are resistant to Endo H cleavage, so the enzyme can be widely used to report the extent of oligosaccharide processing a protein of interest has undergone.
136
+ - Why is <one>cholesterol</one> <two>preferentially localized to the upper region of a monolayer</two>? Because <one>the hydroxyl-group prefers an aqueous environment</one>.
137
+ - The <one>main phospholipids</one> <two>in most animal cell membranes</two> are ... ? The <one>phosphoglycerides</one>.
138
+ - The <one>Ras protein</one> <two>has a slow intrinsic ... activiy</two>. A: The <one>Ras protein</one> has a slow intrinsic <two>phosphatase-activity</two>, <three>converting GTP → GDP</three>.
139
+ - <one>How</one> can a <two>lysosome</two> <three>maintain its acidic pH</three>? The lysosome contains a H⁺ pump in its membrane, which uses the energy from ATP hydrolysis to pump more H⁺ into the lysosome.
140
+ - Nenne <one>zwei Genprodukte</one> die <two>für die Bildung des Autophagosoms wichtig sind</two>. A: (1) Atg1 Kinase Komplex (2) <one>PI3K</one>
141
+ - The <one>fluid mosaic model</one> includes, obviously, the word <two>mosaic</two>. <three>What should this word indicate</three>? That this model <two>refers to the presence of proteins suspended in the membrane bilayer</two>.
142
+ - For <one>animal cell culturing</one>, the substrate concentration of aminoacids is often very important, in particular <two>glutamine</two>. Why glutamine? Because <one>glutamine</one> <two>functions as an energy substrate</two>.
143
+ - <one>Collagen fibrils</one> are <two>ropes with tunable ... </two>? <one>Stiffness</one>.
144
+ - <one>What happens</one> if the <two>NLS</two> <three>is mutated</three>? This will lead to <one>cytosolic localization of the given package</one>.
145
+ - Es gibt sogenannte <one>I-cell diseases</one>, <two>Inclusion-cell</two> diseases. Die sind Teil von <three>lysosomal storage disease families</three>. Welches Enzym ist hier defekt? Die <one>Phosphotransferase</one>, ein Enzym des Golgi-Apparatus.
146
+ - Name a component of the <one>signal recognition particle (SRP)</one> complex. A: The <one>signal recognition particle RNA</one>, which is also known as the <two>7SL RNA</two>.
147
+ - Nenne <one>zwei (allgemeine) Bedingungen</one> die eine Zelle erfüllen muss <two>um in die Mitose eintreten zu können</two>. A: (1) es dürfen <one>keine DNA-Schäden</one> vorhanden sein (2) die Zellen müssen eine <one>ausreichende Größe</one> erreicht haben
148
+ - <one>With which assay</one> can we <two>determine</two> if a nuclear protein shuttles in or out of the nucleus? With help from a <one>Heterokaryon assay</one>.
149
+ - Warum ist <one>Rapamycin</one> (<two>RAPA</two>) in der Zellbiologie wichtig? Weil <one>Rapamycin</one> als <two>Immunosuppressivum</two> wirken kann, und auch die Entwicklung von Krebs behindert.
150
+ - <one>Was passiert</one> bei <two>Zugabe von ATP</two> zu <three>Actinmonomeren</three>? Es erfolgt eine <one>Konformationsänderung in Actin</one>; dieses assoziiert mit 2 anderen Actin-Monomeren. Dies kann der <two>Beginn für die Entstehung eines Actin-Filaments</two> sein.
151
+ - Das <one>Glykoproteinhormon EPO</one> <two>hat n AA</two>? <one>165</one>.
152
+ - <one>Phospholipide</one> <two>können in der Membran bewegt werden</two>. Nenne die vier grundlegenden <two>Bewegungsarten</two>. A: (1) laterale diffusion (2) <one>Flexion</one> (3) <one>Rotation</one> (4) <one>transversale Diffusion</one>
153
+ - Nenne einen <one>Unterschied</one> zwischen <two>Mitosis</two> und <two>Meiosis</two>. A: Die Produkte der Meiosis sind haploid.
154
+ - <one>How</one> can we <two>visualize</two> <three>lipid rafts</three> <four>in membranes</four>? Via the <one>AFM</one> (<two>atomic force microscope</two>).
155
+ - Zellulär betrachtet: was heißt <one>Atg8</one> und warum ist <one>Atg8</one> wichtig? <one>Atg8</one> heißt <two>Autophagy-related protein 8</two>. Es ist ein ubiquitin-like Protein, das für die Bildung von autophagosomalen Membranen wichtig ist. Die Konjugation von Atg8 an die autophagosomale Membran ist für die Autophagie in Eukaryoten essenziell.
156
+ - Name <one>a big advantage</one> that <two>multicellularity</two> brought. A: <one>Bigger organisms</one> are able to access more nutrients than do unicellular organisms.
157
+ - <one>To which family</one> do the <two>death receptors</two> belong to? <one>TNF receptor family</one>.
158
+ - Zellbiologisch heraus betrachtet: wieso hat <one>Koffein</one> eine <two>stimulierende Wirkung</two>? Es <one>hemmt die Phosphodiesterase</one>, und <two>bedingt dadurch einen langsameren Abbau von cAMP</two>.
159
+ - <one>Wo</one> vor allem könnten wir das Protein <two>Dynein</two> finden? In <one>Flagellen</one> oder <one>Spermatozoa</one>.
160
+ - <one>Wann</one> setzt die Zelle das Enzym <two>Glutamine Synthetase</two> ein? Wenn die <one>NH₃-Konzentration niedrig ist</one>.
161
+ - In <one>cell biology</one>: <two>give another expression</two> <three>for</three> <four>reversable cell cycle arrest</four>. A: <one>Quiescence</one>.
162
+ - Das <one>Porin</one>-Protein <two>in Mitochondrien</two> <three>erlaubt einen Durchtritt von Molekülen bis zu n Dalton durch</three>? <one>600 Dalton</one>.
163
+ - What is <one>the best source for microtubules</one>? <one>Brains</one>.
164
+ - <one>Ionenkanäle</one> <two>können kontrolliert werden</two>. <three>Nenne hierzu drei Möglichkeiten</three>. A: (1) <one>spannungskontrolliert</one> (2) <one>ligandenkontrolliert</one> (Transmitter, Ionen, Nukleotide) (3) <one>mechanisch kontrolliert</one>
165
+ - Wie schaffen es <one>Lysosomen</one> <two>einen niedrigeren pH-Wert als ihre Umgebung zu halten</two>? Sie besitzen eine <one>Protonenpumpe der Klasse V</one>, die unter ATP-Verbrauch Protonen in den Lysosomen anreichert.
166
+ - Name <one>one important receptor</one> <two>that is degraded within lysosomes</two>. A: <one>EGFR Receptor</one> (this is a safety mechanism).
167
+ - Why the <one>Z</one> in <two>FtsZ</two>? Because <one>it will build the Z ring</one> <two>at the site where the septum forms</two>.
168
+ - <one>Who</one> <two>invented the wheel</two>? Actually <one>prokaryotes</one>, via their <two>ATPase</two>.
169
+ - The <one>Glucose-Transporter</one> (<one>GLUT</one>) is <two>an example for what kind of transporter</two>? <one>GLUT</one> is a <two>uniporter transporter protein</two>. URL: https://en.wikipedia.org/wiki/Glucose_transporter
170
+ - <one>Where</one> can <two>RanGAP</two> and <two>RanGEF</two> <three>be found</three>, respectively? (1) <one>RanGAP</one>: only in the <two>cytoplasm</two> (2) <one>RanGEF</one>: only in the <two>nucleus</two>
171
+ - <one>Which enzyme</one> <two>catalyzes the synthesis of cGMP</two>? <one>Guanylate cyclase</one>.
172
+ - <one>Which</one> <two>categories of SNAREs</two> exist? (1) <one>vesicle</one> or <one>v-SNAREs</one>: <two>these are incorporated into the membranes of transport vesicles during budding</two> (2) <one>target</one> or <one>t-SNAREs</one>: <two>these are located in the membranes of target compartments</two>
173
+ - Die <one>Form von Mitochondrien</one> ist unter anderem wovon abhängig? Vom <one>metabolischen Zustand</one>.
174
+ - Nenne <one>ein Beispiel</one> für <two>einen Regulator der ras-Aktivität</two>. A: <one>NF1</one>.
175
+ - Name <one>four different families</one> of <two>cellular adhesion proteins</two>. A: (1) Ig-CAMs (2) cadherins (3) integrins (4) <one>selectins</one>
176
+ - In <one>prokaryotic cells</one> (such as <two>E. coli</two>), what is the most abundant membrane Phospholipid? <one>Phosphatidylethanolamine</one>.
177
+ - <one>Warum</one> besitzen <two>Archaea</two> <three>Etherbindungen</three>? Da <one>Esterbindungen</one>, wie in Bacteria und Eukaryoten, <two>unter extremen Bedingungen rasch hydrolysieren würden</two>.
178
+ - For <one>clathrin-coated buds</one>: <two>which protein</two> assembles at the neck of the bud? <one>Dynamin</one>.
179
+ - Within a <one>monolayer</one>, <two>where</two> can we find <three>cholesterol</three>? <one>Cholesterol</one> is preferentially localized to the upper region of the monolayer because the hydroxyl-group prefers an aqueous environment.
180
+ - <one>Why</one> is it important that the <two>ER</two> (<two>endoplasmic reticulum</two>) has a large surface area? This helps in <one>biochemical synthesis</one>.
181
+ - Was meinen wir mit einer <one>asymmetrischen Zellteilung</one>? Dies ist schlicht <one>eine Zellteilung, bei der die beiden Tochterzellen unterschiedlich groß sind</one>.
182
+ - <one>Mice without p53</one> <two>show what phenomen</two>, in general? They are <one>susceptible to early tumours</one>.
183
+ - In der Zellbiologie binden die <one>MAPs</one> (<two>Microtubule-associated protein</two>) an Tubulin Subunits. <three>Welche Funktion erfüllt dies</three>? Sie <one>regulieren damit deren Stabilität</one> - machen sie also stabiler oder instabiler.
184
+ - <one>Nucleoporins</one> <two>contain</two> in particular <three>which two-aminoacid repeats</three>? <one>FG</one>, aka <two>Phe</two>/<two>Gly repeats</two>.
185
+ - What is a <one>Ionophore</one>? This is <one>a lipid-soluble molecule</one> usually synthesized by microorganisms, able to transport ions across the lipid bilayer of the cell membrane.
186
+ - <one>Where</one> are <two>cell membranes</two> <three>synthesized</three>? Membranes and their constituent proteins are assembled <one>in the ER</one>.
187
+ - Give <one>two examples</one> <two>for materials</two> cells like to adhere to. A: (1) <one>polylysine</one> (2) <one>extracellular matrix components</one>
188
+ - The <one>human body</one> contains about n cells? <one>10¹⁴ cells</one>.
189
+ - Zellulär betrachtet: <one>wo</one> kann das Protein <two>Cathepsin D</two> gefunden werden? In <one>Lysosomen</one>.
190
+ - <one>What happens</one> to <two>p53</two> <three>upon activation</three>? It will be <one>translocated into the nucleus</one>.
191
+ - <one>Human CDKs</one> contain <two>a modified ATP-binding site</two> <three>that can be regulated by ... </three>? It can be regulated by <one>cyclin binding</one>.
192
+ - <one>Wieviele Ribosomen</one> könnte man in eine <two>Mycoplasma-Zelle</two> (im Durchmesser) <three>packen</three>? <one>10</one>.
193
+ - Name the <one>three major coat proteins</one> <two>in a cell</two>. A: (1) clathrin-coated (2) <one>COPI-coated</one> (3) <one>COPII-coated</one>
194
+ - <one>Kompartimente</one> erfordern ...? <one>Proteinsortierung</one>.
195
+ - <one>Chaperone-mediated autophagy</one> (<two>CMA</two>) <three>involves the recognition by ... which complex</three>? The <one>hsc70-containing complex</one>.
196
+ - <one>Cargo</one> within the cell can be <two>sent via vesicles</two>, which must be cleave off during the <three>scission</three> step. <four>Which enzymes catalyze this reaction usually</four>? <one>GTPases</one>, such as <two>dynamin</two>.
197
+ - <one>Microtubules</one> <two>are organized from ...</two>? <one>Centrosomes</one>.
198
+ - <one>How comes</one> <two>a cell manages to counteract</two> <three>incorrect stop codons</three>? This is achieved by a process called <one>NMD</one> (<two>nonsense mediated decay</two>).
199
+ - Lassen <one>tight junctions</one> <two>Nährstoffe</two> <three>durch</three>? <one>Nein</one>.
200
+ - Nenne die <one>drei Hauptgruppen von Membranlipiden</one>. A: (1) Glykolipide (2) <one>Phospholipide</one> (3) <one>Cholesterin</one>
201
+ - Name <one>one important but unusual environmental cue for a cell in a multicellular organism</one>. A: <one>Signals</one> <two>from the other cells</two>.
202
+ - <one>Incoming transport vesicles</one> <two>move to the Golgi apparatus</two>. <three>Where to first</three>? Towards the <one>cis-face</one> of the Golgi apparatus.
203
+ - <one>Multicellularity</one> is in general a successful strategy, but <two>there is at the least one major drawback when compared to unicellularity</two>. Which one is that? It takes longer before <one>reproduction</one> can occur.
204
+ - <one>Warum</one> sind <one>Vesikel</one> für die Zelle so wichtig? Weil die Zelle damit <one>Moleküle zwischen Organellen und dem Aussenmilieu verschicken kann</one>.
205
+ - In der Zellbiologie gibt es ein sehr wichtiges, dimeres (genauer: heterodimeres) Protein namens <one>MPF</one>. Wofür steht die Abkürzung <one>MPF</one>? <one>Maturation-promoting factor</one>. Manchmal wird es aber auch <two>mitosis-promoting factor</two> bezeichnet.
206
+ - Gehören die <one>Lysosomen</one> zum <two>Endomembransystem</two>? <one>Ja</one>.
207
+ - The <one>Gamma-Tubulin Ring complex</one> <two>is built where exactly</two>? At the <one>minus end of Microtubules</one>.
208
+ - Name the <one>three Ras Proteins in Humans</one>. A: (1) <one>H</one>-<two>Ras</two> (2) <one>K</one>-<two>Ras</two> (3) <one>N</one>-<two>Ras</two>
209
+ - The <one>Rab GTPase</one> <two>is important for ... </two>? <one>Organelle identity</one>.
210
+ - <one>Welche zelluläre Funktion</one> haben <two>Intermediärfilamente</two>? <three>Nenne zudem Beispiele für Intermediärfilamente</three>. A: <one>Intermediärfilamente</one> dienen der <two>Erhöhung der mechanischen Stabilität der Zelle</two>. Sie haben einen Durchmesser von 10 nm und liegen somit zwischen Aktinfilamenten (7 nm) und Mikrotubuli (25 nm). Intermediärfilamente bilden mit Mikrotubuli und Aktinfilamenten das Cytoskelett der Zelle. "Desmine" und "Lamine" sind Beispiele für Intermediärfilamente.
211
+ - Give another name for the <one>centrosome</one>. A: <one>MTOC</one>: <two>Microtubule organizing center</two>. URL: https://en.wikipedia.org/wiki/Microtubule_organizing_center
212
+ - Nenne <one>sechs Organellen</one>. A: (1) der <one>Zellkern</one> (2) die <one>Mitochondrien</one> (3) die <one>Chloroplast</one> (4) die <one>Lysosome</one> (5) die <one>Peroxisome</one> (6) das <one>endoplasmatische Retikulum</one> (7) der <one>Golgi-Apparat</one> (bei manchen Definitionen)
213
+ - Which <one>energy form</one> does the cell use for <two>actin</two> and <two>tubulin</two> subunits? (1) <one>Actin</one>: <two>ATP</two> (2) <one>Tubulin</one>: <two>GTP</two>
214
+ - Does <one>FRAP</one> (<two>fluorescence recovery after photobleaching</two>) <three>make use of GFP proteins</three>? <one>Yes</one>. URL: https://en.wikipedia.org/wiki/Fluorescence_recovery_after_photobleaching
215
+ - What happens when <one>lipids</one> go beyond a certain temperature? Also name a consequence of this. A: They turn into a <one>paracristalline form</one> - hence, <two>they can no longer rotate freely</two>.
216
+ - Nenne <one>zwei Aufgaben der Peroxisomen</one>. A: (1) <one>Oxidativer Abbau von Fettsäuren</one> (2) <one>Entgiftung von toxischen Substanzen</one>
217
+ - <one>COP-Proteine</one> <two>in Vesikeln</two> <three>dienen dem Transport zwischen ...</three>? <one>ER</one> und <one>Golgi</one>.
218
+ - The <one>Sec23 gene</one> is <two>part of a protein complex in a cell</two>. Where can it be found inside of a cell? In the <one>endoplasmic reticulum</one>.
219
+ - Die <one>Fluidität der Plasmamembran</one> <two>ist geringer als</two> <three>die in der intrazellulären Membran auf Grund des hohen Gehalts an ... </three>? <one>Cholesterin</one>.
220
+ - In der Zellbiologie: wofür steht die Abkürzung <one>NA Wert</one>? <one>Numerical Aperture</one>. URL: https://en.wikipedia.org/wiki/Numerical_aperture
221
+ - In der Zellbiologie: der Begriff <one>Autophagy</one> wurde von <two>Christian de Duve</two> geprägt. <three>In welchem Jahr</three>? <one>1963</one>.
222
+ - <one>Eine menschliche Pankreaszelle</one> besitzt wieviele Ribosomen? Einige Millionen.
223
+ - <one>How many different cell types</one> can we find in the human body? <one>210</one>.
224
+ - Es gibt nicht nur <one>GFP</one> sondern auch <two>CFP</two> sowie <two>YFP</two>. <three>Wofür stehen diese Abkürzungen jeweils</three>? (1) <one>CFP</one> ist <two>cyan fluorescent protein</two>. (2) <one>YFP</one> ist <two>yellow fluorescent protein</two>.
225
+ - Was heisst <one>mTOR</one> in der Zellbiologie? <one>Mammalian target of rapamycin</one> - beziehungsweise heutzutage <two>mechanistic target of rapamycin</two>. URL: https://de.wikipedia.org/wiki/MTOR
226
+ - Eine typische <one>Eukaryotenzelle</one> <two>hat etwa n Nuclear Pore Complexes</two> (<three>NPC</three>), von-bis? Etwa <one>3000-5000 dieser NPCs</one>.
227
+ - <one>Periphere Mikrotubuli</one> <two>in den Geisseln</two> sind miteinander wie verbunden? Durch das Motorprotein <one>Dynein</one>.
228
+ - <one>Sphingosine</one> plays a role in cell membranes. It is a is a long acyl chain with ... and two hydroxyl groups (OH) at one end. <two>What is the other part</two>? An <one>amino group</one> (<one>NH₂</one>).
229
+ - Erlauben <one>Transfersequenzen</one> den <two>gerichteten (= Polarität) Einbau von Proteinen in Membranen</two>? <one>Ja</one>.
230
+ - Nenne <one>ein Beispiel</one> für <two>ein kleines Signalmolekül, das eine zelluläre Rolle spielt</two>. A: <one>NO</one> (<two>Stickstoffmonoxid</two>).
231
+ - <one>Vorgänger</one> eines <two>Lysosomes</two>? Ein <one>late endosome</one>.
232
+ - From the point of view of cellbiology: <one>how</one> can the <two>DNA in a cell be called</two>, in regards to the cell as the focus of the question? <one>DNA</one> is the <two>genomic repository of a cell</two>.
233
+ - Within a given cell, the so-called <one>FG repeats</one> <two>are associated with ... </two>? <one>Karyopherins</one>.
234
+ - Is it possible to detect a small object below the resolution limit, in light microscopy? <one>Yes</one>, <two>if said object itself emits light</two>.
235
+ - <one>Wie</one> gelangt <two>Pyruvat</two> in das Mitochondrium? Über einen <one>H⁺</one>-<two>Symporter</two>.
236
+ - Do <one>plant cells</one> <two>make use of the KDEL sequence</two>? <one>Yes</one>.
237
+ - What is <one>the net effect</one> of <two>mitosis without cytokinesis</two>? <one>Cells with multiple nuclei</one> will be the result.
238
+ - Give one example for <one>actin based motor proteins</one>. A: <one>Myosins</one>. URL: https://en.wikipedia.org/wiki/Myosin
239
+ - What is the job of the <one>PIN Proteins</one> in plants? PIN proteins serve as <one>secondary active transporters</one> in the cell membrane, regulating the influx and efflux of auxins.
240
+ - <one>How</one> does a cell cope with a <two>residual body</two>? (1) it <one>can release the content of residual body by exocytosis</one> (2) it can be retained within the cytoplasm, and become a "lipofuscin granule".
241
+ - <one>Rab6 proteins</one> <two>fulfil which cellular role</two>? They direct a vesicle to specific spots on the correct target membrane.
242
+ - How do we call <one>the two layers of the phospholipid-bilayer</one>? <one>Leaflets</one>. URL: https://en.wikibooks.org/wiki/Structural_Biochemistry/Lipids/Lipid_Bilayer
243
+ - <one>Vinculin</one> <two>kann welch anderes Protein binden</two>? <one>Actin</one>.
244
+ - <one>The process</one> <two>by which an aged organelle is degraded</two> <three>in a lysosome</three> <four>is called ... </four>? <one>Autophagy</one>.
245
+ - Was heißt bei den <one>Tor-Kinasen</one> die Abkürzung <two>Tor</two>? <one>Target of Rapamycin</one>.
246
+ - Most <one>animal cells</one> have a <two>covering</two> over the plasma membrane. <three>How is this covering called</three>? <one>Glycocalyx</one>. URL: https://de.wikipedia.org/wiki/Glykokalyx
247
+ - <one>Welche Mikrotubuli</one> reichen <two>von Zellpol zu Zellpol</two>? Die <one>Polar-Mikrotubuli</one>.
248
+ - What is the <one>D</one> and <one>T</one> form of actin filaments? (1) the <one>D form</one> ... <two>with bound ADP</two> (2) the <one>T form</one> ... <two>with bound ATP</two>
249
+ - <one>Which hormone</one> causes <two>apoptotic loss of the tail in frogs</two>? The <one>thyroid hormone</one>.
250
+ - Name <one>the four main families of motor proteins</one> in human cells. A: (1) Integrins (2) Immunoglobulins (3) Cadherins (4) Selectins
251
+ - <one>Which stain</one> was <two>originally used to identify the Golgi-apparatus</two>? A <one>silver stain</one>. URL: https://en.wikipedia.org/wiki/Golgi%27s_method
252
+ - <one>Wann</one> gibt <two>Aequorin</two> <three>Licht ab</three>? Bei Zugabe von (geringen Mengen) <one>Ca²+</one>.
253
+ - What is the <one>intracellular signal</one> that <two>triggers macroautophagy</two>? The <one>intracellular levels of particular amino acids</one>.
254
+ - Nenne <one>eine Substanz, die Mikrotubuli stabilisieren kann</one>. A: <one>Taxol</one>. URL: https://de.wikipedia.org/wiki/Paclitaxel
255
+ - Are <one>phospholipid membranes</one> <two>permeable to water</two>? <one>No</one>, they are <two>impermeable to water</two>.
256
+ - In der Zellbiologie: was ist <one>Vimentin</one>? <one>Vimentin</one> ist <two>ein Typ 3 Intermediärfilament</two> das eine wichtige Rolle bei der Verankerung von Organellen im Cytosol spielt.
257
+ - Name <one>three detergents</one> used in cellbiology. A: (1) <one>SDS</one> (2) <one>Triton X-100</one> (3) <one>Beta-octylglucoside</one>
258
+ - Give another word/term for the <one>centrosome</one>. A: <one>Microtubule organizing center</one>. URL: https://en.wikipedia.org/wiki/Microtubule_organizing_center
259
+ - <one>Who</one> <two>can reverse ubiquitination events</two>? The <one>Deubiquitinases</one>. URL: https://en.wikipedia.org/wiki/Deubiquitinating_enzyme
260
+ - <one>Actin Filamente</one> haben einen <two>nucleation point</two>, der von einem Komplex ausgeht, welcher wiederum 7 Proteine hat. Wie heisst dieser Komplex, und wofür steht die Abkürzung? <one>Arp2</one>/<one>3 complex</one>. <two>Arp</two> steht für <three>Actin-Related Protein</three> - ARP ähnelt Aktin strukturell.
261
+ - <one>Zellmembranen</one> wirken als ...? <one>Osmotische Schranken</one>.
262
+ - <one>Cytokines</one> <two>can convey to the cells signals to induce ...</two> which four different cell-specific phenomena, all starting with the word <three>cell</three>)? (1) <one>cell proliferation</one> (2) <one>cell specialization</one> (3) <one>cell interaction</one> (4) <one>cell movement</one>
263
+ - <one>What would happen</one> if we would <two>knock out</two> <three>lysosomal hydrolases</three>? <one>Undigested molecules would accumulate in lysososomes</one>, causing the cell to swell and ultimately die.
264
+ - In cell biology: what does the term <one>photobleaching</one> mean? <one>Photobleaching</one> is <two>the photochemical destruction of a fluorophore</two>.
265
+ - <one>Welche Aufgabe</one> hat die <two>Alpha-Subunit</two> bei G-Proteinen? Diese Untereinheit ist eine <one>GTPase</one>. Die Alpha-Untereinheit bei G-Proteinen hydrolysiert GTP zu GDP; dies inaktiviert das G-Protein.
266
+ - Do <one>gap junctions</one> <two>allow passage</two>? <one>Yes</one>; of <two>small water-soluble molecules</two>.
267
+ - What means <one>dynamic instability</one> in <two>microtubules</two>? That <one>microtubules</one> <two>undergo phases of growth and shrinkage</two>.
268
+ - In der Zelle: <one>wie</one> wird <two>dGTP</two> hergestellt? Ausgehend von der <one>GDP-Ribose</one>, über die Ribonucleotide Reduktase, hin zu dGDP, danach fügt eine Kinase ein P hinzu und es entsteht dGTP.
269
+ - In der Zellbiologie: <one>welche Rolle</one> spielen <two>multivesicular bodies</two>? Sie spielen eine Rolle beim Transport von ubiquitinierten Proteinen und Rezeptoren in ein Lysososome.
270
+ - Das <one>ced-4 Genprodukt</one> <two>aktiviert welches andere Protein</two>? Die <one>ced-3 Caspase</one>.
271
+ - <one>Inositol</one> besitzt <two>n OH-Gruppen</two>? <one>6</one>. URL: https://en.wikipedia.org/wiki/Inositol
272
+ - In cellbiology: <one>Shibire</one> is a <two>temperature sensitive phenotype</two> in Drosophila. <three>What happens at high temperature, and why</three>? The <one>flies become paralysed at high temperature</one>. The phenotype is the result of the inability of endocytic vesicles to be separated from the parent membranes and thus there is a depletion of vesicles especially in synaptic terminals.
273
+ - Bei der <one>Dynamik von Mikrotubuli</one>/Tubulin" in der Zelle hat <two>Alpha-Tubulin</two> eigentlich immer "GTP" gebunden. Lediglich Beta-Tubulin unterscheidet sich in seinem Verhalten, je nachdem ob es GTP oder GDP gebunden hat. Wie unterscheidet sich Beta-Tubulin bei "GDP" und "GTP" dahingehend jeweils? (1) Beta-Tubulin mit "GDP": "Zerfall der Mikrotubuli" (2) Beta-Tubulin mit "GTP": <two>Polymerisierung der Mikrotubuli</two>
274
+ - Der <one>ABC-Transporter</one> ist membrangebunden und <two>kann ATP binden</two>. <three>Auf welcher Seite der Zellmembran bindet dieser Transporter ATP</three>? Auf der <one>cytosolischen Seite</one>.
275
+ - Name <one>two categories</one> of <two>endocytosis</two>. A: (1) <one>bulk-phase endocytosis</one> (2) receptor-mediated endocytosis
276
+ - What does a <one>mast cell</one> secrete? <one>Histamine</one>. URL: https://en.wikipedia.org/wiki/Mast_cell
277
+ - A <one>32 base pair deletion</one> can confer <two>HIV resistance</two>. In which human gene? <one>CCR5</one>.
278
+ - Give another, more interesting expression for the <one>addition of a ubiquitin tail</one>. A: The <one>kiss-of-death</one>.
279
+ - <one>Cell lines</one> are <two>usually derived from</two> ... ? <one>Tumors</one>.
280
+ - Der <one>retrograde transport</one> bei <two>COP I</two> verläuft von ... zu ...? <one>Von Golgi</one>, <two>zum ER</two>.
281
+ - <one>Who</one> produces <two>lysosomes</two>? The <one>Golgi complex</one>. URL: https://en.wikipedia.org/wiki/Golgi_apparatus
282
+ - <one>The basis for asexual reproduction</one> <two>is given by ... </two>? <one>Mitosis</one>. URL: https://en.wikipedia.org/wiki/Mitosis
283
+ - Nenne <one>drei konkrete Funktionen des glatten ERs</one>. A: (1) <one>Synthese von Lipiden</one> (2) Kohlenhydratstoffwechsel (3) Detoxifizierung von Giften
284
+ - Is <one>a human egg</one> or <one>a human red blood cell</one> larger? A <one>human egg is larger</one> than a red blood cell.
285
+ - Is it easy <one>to stretch a membrane</one>? <one>No</one>.
286
+ - Nenne <one>die fünf Phasen</one> der <two>Meiose I</two> in korrekter Reihenfolge. A: (1) <one>Leptotän</one> (2) <one>Zygotän</one> (3) <one>Pachytän</one> (4) <one>Diplotän</one> (5) <one>Diakinese</one>
287
+ - <one>How</one> can we detect <two>apoptotic cells</two>? Via <one>TUNEL Labeling</one>.
288
+ - Diameter of the <one>megakaryocytes</one> (up to)? Up to <one>60 micrometer</one>.
289
+ - Was ist <one>das gemeinsame Merkmal aller G-Proteine</one>? Eine <one>hoch konservierte G-Domäne</one>.
290
+ - Das <one>KDEL Signal</one> lässt sich <two>wo finden</two>? Am <one>C-terminalen Ende</one> <two>einer Polypeptidkette</two>.
291
+ - Nenne <one>vier Motorproteinklassen</one> in alphabetischer Reihenfolge. A: (<one>D</one>, <one>K</one>, <one>M</one>, <one>P</one>) (1) <two>Dynein</two> (2) <two>Kinesin</two> (3) <two>Myosin</two> (4) <two>Prestin</two>
292
+ - <one>Ribosomes</one> are one of the most abundant macromolecules in the cell. Compare the amount of ribosomes <two>per yeast cell</two> and <two>per HeLa cell</two>, in numbers. A: (1) <one>yeast cell</one>: about <two>200.000 ribosomes</two> (2) <one>HeLa cell</one>: about <two>3.000.000 ribosomes</two> [Warner, 1999]
293
+ - <one>Humans</one> <two>have n actin genes in their genome</two>? <one>6</one>.
294
+ - In der Zellbiologie: was heißt <one>ESCRT</one>? The <one>endosomal sorting complex required for Transport</one>. URL: https://en.wikipedia.org/wiki/ESCRT
295
+ - <one>Welche Gene</one> <two>verzögern den Zellzyklus</two>? <one>Tumorsuppressor-Gene</one>.
296
+ - <one>Acetyl-Coenyzm A</one> <two>besteht aus</two>? <one>Pyruvat</one> und Coenzym A.
297
+ - Andere Bezeichnung für <one>lösen</one>, in bezug auf die Zellbiologie? <one>Solubilisieren</one>.
298
+ - In general: <one>which two types of cilia exist</one>? (1) <one>motile cilia</one> (2) <one>nonmotile cilia</one>, also called <two>primary cilia</two>
299
+ - Name <one>three skeletal proteins</one>, starting with the letters A,V,F. A: (1) Actin (2) Vinculin (3) <one>Fibronectin</one>
300
+ - Name <one>a bacterial homolog of actin</one>. A: <one>MreB</one>.
301
+ - Der <one>Zellzyklus</one> umfasst <two>7 prominente Punkte</two> (die <i>checkpoints</i> ausgenommen). <three>Welche sind dies</three>? A: <one>(G0)G1,R,S,G2,M,Cytokinese</one>.
302
+ - Nenne eine <one>Pumpe</one> in den Membranen der Lysosomen. A: <one>H⁺ ATPase</one>.
303
+ - Nenne <one>die drei Domänen</one> des <two>Glykophorin</two>. A: (1) <one>extrazelluläre Domäne</one> (2) <one>Transmembrandomäne</one> (3) <one>cytoplasmatische Domäne</one>
304
+ - Der <one>MPF</one> (<one>Mitosis-promoting factor</one>) <two>wird wann und wie aktiviert</two>? <one>MPF</one> wird am Ende der G2-Phase durch eine Phosphatase aktiviert, die eine hemmende (inhibitory) Phosphat-Gruppe entfernt.
305
+ - <one>Chaperones</one> not only help during protein folding, but <two>may also reduce which unwanted side effect</two>? <one>Aggregation</one>, that is, the <two>accumulation of unfolded proteins</two>.
306
+ - <one>Who</one> proposed the structure for the <two>nucleosome</two>? <one>Roger Kornberg</one>.
307
+ - In cellbiology: what is a <one>CKI</one>? This is a <one>cyclin-dependent kinase inhibitor</one>.
308
+ - What is meant with the term <one>translational frameshifting</one>? When the cell ignores a stop codon.
309
+ - The <one>interaction of light with an object</one> changes the phase relationships of the light waves in a way that produces complex ... effects. A: <one>Complex interference effects</one>.
310
+ - Within a cell: <one>what happens</one> if a protein loses its KDEL Sequence? This protein can no longer be retained within the ER.
311
+ - Define the term <one>heterotrophy</one>. A: At least two genetically different types of mitochondria (or other organelles) are present in the same cell.
312
+ - <one>Why</one> is <two>Cholesterol</two> preferentially localized to the upper region of the lipid monolayer? Because <one>its hydroxyl-group prefers an aqueous environment</one>.
313
+ - Why is the <one>26S-proteasome</one> important for a cell? (1) The <one>26S-proteasome</one> can <two>eliminate defective proteins</two>. (2) The <one>26S-proteasome</one> can <two>regulate cellular processes</two>.
314
+ - What are <one>early endosomes</one>? Bubbles that exist directly after being pinched off. They are mildly acidic, so not much degradation has yet taken place. As the early endosome migrates deeper into the cell, it becomes more and more acidic and evolves into a late endosome.
315
+ - Has <one>autophagy</one> <two>an important additional role aside from organelle turnover</two>? <one>Yes</one> - <two>autophagy</two> <one>is also an immune mechanism</one>. It plays a role in the destruction of <two>intracellular pathogens</two>.
316
+ - The <one>smooth endoplasmic reticulum</one> is called <two>smooth</two> because ... ? Because it <one>lacks ribosomes</one>. URL: https://en.wikipedia.org/wiki/Endoplasmic_reticulum#Smooth_endoplasmic_reticulum
317
+ - Der <one>cis-golgi</one> ist <two>wem</two> zugewandt? Dem <one>ER</one>.
318
+ - <one>ARF-GAP1</one> ist was für ein Proteintyp? Ein <one>GAP</one>: <two>GTPase-activating protein</two>.
319
+ - There is <one>a hormone</one> which <two>transforms</two> a tadpole into a frog. <three>Which hormone is that</three>? <one>Thyroid hormone</one>. URL: https://en.wikipedia.org/wiki/Thyroid_hormones
320
+ - In <one>Live Imaging</one> there is a <two>triangle of frustration</two>. What are the three major points? (1) <one>sensitivity</one> aka <two>see something</two> (2) <one>speed</one> aka <two>temporal resolution</two> (3) <one>nice picture</one> aka <two>spatial resolution</two>
321
+ - <one>Which three general functions</one> may a <two>P body</two> have? (1) "storeage" (2) <one>repression</one> (3) <one>degradation</one>
322
+ - In cell biology, we know the <one>ARP complex</one>. <two>What other name is given to this complex</two>? The Arp 2/3 complex.
323
+ - Name <one>two</one> <two>degradation organelles</two>. A: (1) the <one>26S-Proteasome</one> (2) the <one>lysosomes</one>
324
+ - What means <one>cellular respiration</one>? This is how cells consume O₂ and produce CO₂.
325
+ - <one>Wo</one> kann das Protein <two>Spectrin</two> gefunden werden? <one>Spectrin</one> ist ein <two>Cytoskelett-Protein</two>, das wir <three>in Erythrozyten</three> finden können. Es bildet unterhalb der Erythrozytenmembran ein Proteinnetzwerk.
326
+ - In cellbiology: <one>what is the primary role of SNARE proteins</one>? <one>SNARE proteins</one> <two>mediate vesicle fusion</two>, that is, the exocytosis of cellular transport vesicles with the cell membrane at the porosome or with a target compartment, such as a lysosome.
327
+ - <one>Which cell type</one> <two>expresses P-selectin constitutively</two>? The <one>endothelial cells</one>.
328
+ - <one>How</one> does a <two>mRNA</two> with premature stop codons arise in humans, most likely? Due to <one>improper splicing</one>.
329
+ - <one>Warum</one> führt die Zelle <two>Farnesylierungen</two> durch? Um Proteine fest mit der Membran zu assoziieren.
330
+ - In nm: what is the <one>diameter</one> of a typical <two>Nuclear Pore Complex</two>? <one>125 nm diameter</one>.
331
+ - What is the <one>cis-Golgi</one>? The cis-Golgi is the Golgi stack <one>closest to the ER</one>.
332
+ - The <one>SRP</one> (<two>signal recognition particle</two>) can bind to ...? (1) The <one>ribosome</one> (2) the <one>signal sequence</one>
333
+ - Give <one>three examples</one> for <two>G-protein-coupled receptors</two>. A: (1) muscarinic receptor (2) adrenergic receptor (3) <one>opioid receptor</one>
334
+ - We can convert <one>heme</one> into which <two>photoreceptor pigment</two>? Into <one>phycocyanobilin</one>.
335
+ - The <one>limiting separation</one> at which two objects appear distinct is called <two>the limit of resolution</two>. It depends, primarily, on which two features? (1) the <one>wavelength of the light</one> (2) the <one>numerical aperture of the lens system used</one>
336
+ - In <one>cell biology</one>: what does the term <two>transfection</two> mean? The process of deliberately introducing nucleic acids into cells.
337
+ - Was fungiert als <one>allgemeine, zelluläre Zeitschaltuhr</one> in einer Zelle? Die <one>G-Alpha Untereinheit mit gebundenem GTP</one>, in den trimeren G-Proteinen.
338
+ - <one>Chromatin</one> besteht grob formuliert, in Prozent, aus? <one>45% Protein</one>, <two>55% DNA</two>.
339
+ - <one>Cells</one> can degrade proteins without lysosomes - give a proof for this statement. A: <one>Reticulocytes</one> lack lysosomes but can still selectively degrade abnormal proteins.
340
+ - Wir können zwischen <one>primären Lysosomen</one> und <one>sekundären Lysosomen</one> unterscheiden. <two>Was ist das wichtigste Unterscheidungskriterium hierzu</two>? Die primären Lysosomen werden vom Golgi Apparat abgeschnürt. Sie enthalten neu gebildete, noch nicht aktive lysosomale Enzyme. Nimmt so ein Lysosom dann neues Material auf, das verdaut werden soll, so nennt man diese dann sekundäre Lysosomen.
341
+ - Sind <one>Membranen einer Zelle</one> <two>Polymere</two>? <one>Nein</one> - Membranen sind <two>Aggregate</two>.
342
+ - How do we call <one>the vesicles</one> derived from the <three>ER</three>? <one>Microsomes</one>.
343
+ - <one>What</one> does the cyclosome/anaphase promoting complex degrade? It degrades the <one>anaphase inhibitor</one>, via the <two>ubiquitin-degradation pathway</two>.
344
+ - <one>Which protein</one> <two>separates</two> Ran-GTP from importin? The <one>RanBP</one> (<two>Ran Binding Protein</two>).
345
+ - Nenne ein Protein, das an das <one>ER-Retentionssequenz</one> <two>KDEL</two> bindet. A: <one>BiP</one>. URL: https://www.ncbi.nlm.nih.gov/pubmed/28769758
346
+ - An <one>amoeba</one> (a single-celled protozoan) can have <two>a cell diameter of approximately ... </two>? <one>0.5 mm</one>.
347
+ - <one>Where</one> do we find the <two>SRP-Receptor</two>? In the <one>ER membrane</one>.
348
+ - In general: <one>most cell lines used in cell culture technology were derived from</one>? From <one>tumors</one>.
349
+ - <one>How</one> was the function of the <two>SRP</two> (Signal recognition particle) discovered? By the study of processed and unprocessed immunoglobulin light chains.
350
+ - <one>Eine bakterielle Zelle</one> <two>besitzt wieviele Moleküle ATP</two>? <one>1 Million</one>.
351
+ - Some <one>adhesive interactions</one> are adhesive, but why is this valid for the tendons? Because the connective tissue of tendons must transmit force to the skeleton.
352
+ - Zusätzlich zu den <one>Motorproteinen</one> stellen <two>zytoplasmatische Verbindungsproteine</two> eine Verbindung her, zwischen Mikrotubuli und anderen Zellorganellen. <three>Wie werden diese Proteine genannt</three>? <one>CLIPS</one> (<two>cytoplasmic linker proteins</two>).
353
+ - In cell biology: <one>where</one> may one be able to find a <two>lagging head</two>? Within the cell, in <one>kinesin</one>.
354
+ - <one>Intermediärfilamente</one> können mit anderen Intermediärfilamenten eine Interaktion eingehen. <two>Wie geschieht dies</two>? Über <one>Heptad-Repeats</one>.
355
+ - Wozu braucht die Zelle <one>Mikrotubuli</one>? <one>Mikrotubuli</one> funktionieren wie <two>Schienen</two>, entlang derer Mitochondrien, Chloroplasten, Vesikel, Proteine und mRNA transportiert werden kann.
356
+ - Name <one>three general roles</one> of <two>actin filaments</two>. A: (1) cellular contraction (2) <one>cellular migration</one> (3) <one>signalling</one>
357
+ - <one>Welches Protein</one> <two>spaltet Vesikel in einer Zelle ab</two>? <one>Dynamin</one>. URL: https://en.wikipedia.org/wiki/Dynamin
358
+ - Is <one>membrane synthesis</one>, for a given cell, <two>templated by a parental structure</two>? <one>Yes</one>, always.
359
+ - Die <one>Rab Proteinfamilie</one> haben allgemein <two>wieviele Untereinheiten</two>? <one>Eine</one>.
360
+ - <one>Welches Enzym</one> erzeugt <two>dTMP</two>? <one>Thymidylate Synthetase</one> (ausgehend von dUMP).
361
+ - Is <one>robustness</one> <two>in biological systems</two> always a good thing? <one>No</one>. <two>A robust cancer cell is NOT a good thing for the patient!</two>
362
+ - The <one>clathrin triskelion</one> is specifically made up of ... ? <one>3 light chains</one> - and <one>3 heavy chains</one>.
363
+ - <one>Schleiden</one> and <one>Schwann</one> proposed the <two>cell doctrine</two> in which year? In the year <one>1838</one>.
364
+ - <one>Plant RNA editing</one> <two>modifies what to what</two>? Plant RNA editing modifies <one>cytidines</one> (C) to <one>uridines</one> (<two>U</two>), at specific sites in the transcripts.
365
+ - <one>Welche zwei Proteine</one> sind für die <two>Stabilität des Zellkerns</two> einer eukaryoten Zelle extrem wichtig? (1) <one>Typ-A-Lamin</one> (2) <one>Typ-B-Lamin</one>
366
+ - In der molekularen Zellbiologie: was ist <one>Wee1</one>? <one>Wee1</one> ist eine <two>nuclear kinase</two> (ist also im Zellkern vorzufinden), die zur Ser/Thr Familie der Proteinkinasen gehört, in der fission yeast "Schizosaccharomyces pombe". Die molekulare Masse ist 96 kDa. Ihre Aufgabe ist es den Verlauf des Zellzyklus zu regulieren. Zudem kann es die Zellgrösse beeinflussen, indem sie den Eintritt in die Mitose verzögert, durch hemmende Interaktion mit Cdk1- daher der Name "Wee".
367
+ - Nenne eine Grenze der Lichtmikroskopie. A: Die <one>Abbe-Grenze</one>. URL: https://de.wikipedia.org/wiki/Aufl%C3%B6sung_(Mikroskopie)#Abbe-Limit
368
+ - Nenne <one>die drei Typen von Membranrezeptoren</one>. A: (1) G-Protein gekoppelte Rezeptoren (2) Rezeptortyrosinkinasen (3) Liganden-gesteuerte Ionenkanäle
369
+ - Der Mensch hat wieviele Zellen? <one>10¹⁴</one>.
370
+ - Name the <one>two classes</one> of <two>microtubule-based motors</two>. A: (1) <one>Dynein</one> (2) <one>Kinesin</one>
371
+ - How are the cells - in general - be called that secrete their own signals into the bloodstream? <one>Endocrine cells</one>. These cells will <two>secrete hormones</two>.
372
+ - What is the <one>primary function</one> for <two>intermediate filaments</two> for a cell? To <one>provide mechanical strength</one>.
373
+ - <one>Welche Cytoskelett-Elemente</one> sind <two>apolar</two>? Nur die <one>Intermediärfiamente</one>.
374
+ - <one>Centrioles</one> are essential for development of ... ? <two>cilia</two> and <two>flagella</two>.
375
+ - Nenne ein <one>Kompartiment</one>, das man nur in (manchen) Eukarya findet - ausgenommen <two>Chloroplasten</two>, <two>Nucleus</two> und <two>Mitochondrien</two>. A: Die <one>pulsierende Vakuole</one>.
376
+ - The main phospholipids in most animal cell membranes are ...? The <one>phosphoglycerides</one>, also called <two>glycerophospholipids</two>. URL: https://en.wikipedia.org/wiki/Glycerophospholipid
377
+ - <one>Ras proteins in the cytoplasm</one> tend to have what at their carboxy termini? <one>Lipid groups</one>.
378
+ - <one>Where inside of a cell</one> can we find the <two>Cajal bodies</two>? In the <one>nucleus</one>.
379
+ - The <one>Integral of viable cells</one> (IVC) is required for determination of <two>cell-specific rates</two>. It is calculated from ... ? The <one>growth curve</one>.
380
+ - In cell biology, in the <one>chaperone-mediated variant of autophagy pathway</one>: <two>which complex</two> is the most important one? The <one>hsc70-containing complex</one>.
381
+ - Die gängige Bezeichnung für <one>Mitochondrien</one> ist ... ? <one>Kraftwerke der Zelle</one>.
382
+ - Inside cilia there is a <one>microtubule-based cytoskeleton</one>. <two>What is its name</two>? The <one>axoneme</one>. URL: https://en.wikipedia.org/wiki/Axoneme
383
+ - What do the <one>MPRs</one> (<two>Mannose 6-Phosphate Receptors</two>) bind? <one>MPRs</one> bind to newly synthesized lysosomal hydrolases in the trans-Golgi network (TGN) and deliver them to pre-lysosomal compartments.
384
+ - <one>Autophagy</one> is induced <two>upon nutrient depletion</two> - or alternatively, <three>treatment with which particular drug</three>? With <one>Rapamycin</one>.
385
+ - Give another term for the <one>Protein kinase A</one>. A: <one>cAMP-dependent protein kinase</one>.
386
+ - Name <one>an enzyme</one> that helps in <two>protein folding</two>. A: The <one>protein disulfide isomerase</one>.
387
+ - <one>G-Proteine</one> besitzen <two>drei Untereinheiten</two>. Wie können wir experimentell die Alpha-Untereinheit dauerhaft binden und somit einen Effektor blockieren oder dauerhaft aktivieren? Durch Gabe von <one>schwefelsubstituiertem GTP</one>.
388
+ - Nenne <one>drei Typen</one> an <two>Membranproteinen</two>. A: (1) <one>peripher</one> (2) <one>integral</one> (3) <one>glykolipid-verankert</one>
389
+ - What does <one>phagocytosis</one> literally mean? <one>Cellular eating</one>. URL: https://en.wikipedia.org/wiki/Phagocytosis
390
+ - What is the purpose of the <one>caveolae</one> within a given cell? They <one>can protect a cell from stretching</one>. (<two>Caveola mechanosensing</two>)
391
+ - <one>NSF</one> is an <two>ATPase</two>, involved in membrane fusion. How many subunits does it have? <one>NSF</one> is <two>homohexameric</two>, so it has <three>six subunits</three>.
392
+ - Name <one>two</one> <two>ER-resident chaperones</two>. A: (1) <one>Calnexin</one> (2) <one>Calreticulin</one>
393
+ - What is <one>Transdifferentiation</one>? <one>Transdifferentiation</one> is <two>the conversion of a differentiated cell type into another differentiated cell type</two>.
394
+ - Was heißt <one>die Zellmembran ist asymmetrisch</one> ganz konkret, mit Beispiel? Nehmen wir das Mitochondrium heran - Cytochrom c der Atmungskette ist aussen, ATP-Synthase ist innen.
395
+ - In der Zelle führt die <one>TPST</one> (<one>tyrosylprotein sulfotransferase</one>) im Golgi Apparat <two>Sulfonierungen</two> (Sulfation) durch. <three>Woher stammt aber der Schwefel</three>? Der Schwefel stammt von <one>PAPS</one> (<one>3'-Phosphoadenosine-5-Strich-Phosphosulfate</one>).
396
+ - What is the main task of <one>SNARE proteins</one>? <one>SNARE proteins</one> mediate <two>fusion of lipid bilayers</two>.
397
+ - <one>Telomere fusion</one> may, in general, lead to ... ? <one>Chromosomal instability</one>. URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC1993879/
398
+ - Name <one>a domain</one> in an <two>initiator procaspase</two>. A: <one>CARD</one> - the <two>Caspase recruitment domain</two>.
399
+ - Aus welchen <one>vier Untereinheiten</one> besteht <two>Cohesin</two>? (1) <one>SMC1</one> (2) <one>SMC3</one> (3) <one>Scc1</one> (4) <one>Scc3</one>
400
+ - <one>Wo</one> kann das Protein <two>RanGAP1</two> gefunden werden? Auf der <one>Außenseite des Zellkern</one>.
401
+ - What is <one>the most typical trigger of autophagy</one>? <one>Nutrient starvation</one>. <two>Lack of any type of essential nutrient can induce autophagy</two>. In yeast, nitrogen starvation is the most potent stimulus.
402
+ - Nenne ein (physiologisches) Kriterium, mit dem wir zwischen <one>Nekrose</one> und <one>Apoptosis</one> relativ einfach unterscheiden können. A: Die <one>Nekrose</one> geht mit einer <two>Entzündungsreaktion</two> einher. URL: https://de.wikipedia.org/wiki/Nekrose
403
+ - <one>Proteine</one> können an den Golgi-Komplex gelangen und von dort, über Vesikel, in welche 3 Zielareale gelangen? (1) in <one>Lysosomen</one> (2) an die <two>Plasmamembran</two> (3) "ausserhalb der Zelle"
404
+ - <one>Welche Aufgabe</one> hat das Protein <two>Ran</two>? <one>Ran</one> setzt das Importprotein im Zellkern frei, wenn es in seiner aktiven Form vorliegt (also als Ran/GTP).
405
+ - What is <one>the difference</one> between <two>budding</two> and binary fission? Both are forms of asexual reproduction. Binary Fission is the splitting of the cell with mitosis followed by cytokinesis. Budding is the outgrowth of a new cell from the surface of an old one.
406
+ - Wie nennen wir den <one>G1-Kontrollpunkt</one> in Säugetierzellen? <one>Restriktionspunkt</one> (<two>R-Punkt</two>).
407
+ - <one>Wo genau</one> kann <two>Sphingomyelin</two> gefunden werden? In der <one>Myelinscheidenmembran der neuronalen Axone</one>.
408
+ - <one>What activity</one> does <two>Dynamin</two> have? <one>Dynamin</one> has <two>a GTPase activity</two>. URL: https://en.wikipedia.org/wiki/Dynamin
409
+ - <one>With which technique</one> could we <two>prove that signal sequences in proteins are important</two>? With a <one>transfection experiment</one>.
410
+ - Can <one>a cell</one> regulate the export and import of shuttling proteins? <one>Yes</one>, via phosphorylation-dephosphorylation of residues adjacent to NLS or NES signals, resulting in blockade/exposure of signals.
411
+ - Name one big <one>difference</one> between the lumen of a <two>lysosome</two> and the <two>cytoplasm</two>. A: The lumen of a lysosome is <one>more acidic</one> than the cytoplasm.
412
+ - Nenne <one>ein kleines G-Protein</one> das mit dem Buchstaben <two>A</two> beginnt. A: <one>Arf</one> (<two>ADP ribosylation factors</two>). URL: https://en.wikipedia.org/wiki/ADP_ribosylation_factor
413
+ - In cell biology: what does the abbreviation <one>Nups</one> stand for? <one>Nucleoporins</one>. URL: https://en.wikipedia.org/wiki/Nucleoporin
414
+ - Nenne die <one>drei Komponenten</one> beim Aufbau eines Lipidmoleküls. A: (1) <one>Cholin</one> (2) Phosphat (3) <one>Glycerin</one>
415
+ - <one>Welche zwei Enzyme</one> konvertieren <two>dUTP</two> zu <three>dTTP</three>? (1) <one>Phosphatase</one> (2) <one>Kinase</one>
416
+ - Welche <one>zwei verschiedene Arten</one> von <two>Membrantransport</two> gibt es? (1) Transport durch die Membran hindurch (2) Transport innerhalb der Membran selbst (zum Beispiel Elektronentransport)
417
+ - <one>In welche Richtung</one> wandern jeweils COP I und COP II Vesikel? COP I wandert von trans-Golgi zu cis-Golgi, COP II wandert in die gegengesetzte Richtung also vom rauhen ER hin zum Golgi Apparatus.
418
+ - <one>Proteins can move from one intracellular compartment to another</one>, <two>by which three mechanisms</two>? (1) <one>gated transport</one> (2) <one>protein translocation</one> (3) <one>vesicular transport</one>
419
+ - Name a way how to experimentally measure DNA replication. A: Make use of <one>[3H] thymidine</one>.
420
+ - Was macht das <one>Tus Protein</one>? Das Tus Protein blockiert die <one>DnaB-Helikase</one> und bringt damit die Wanderung der Replikationsgabel zum Stillstand.
421
+ - For any given eukaryotic cell: <one>when</one> is <two>supercoiling</two> extremely important? When it comes to the <one>replication of DNA</one>.
422
+ - <one>What happens</one> when we increase the concentration of detergents above the CMC? Some of the <one>detergent molecules</one> will form <two>micelles</two>.
423
+ - The Adaptor protein <one>Epsin</one> in a cell helps which other molecule? <one>Clathrin</one>.
424
+ - <one>Who</one> has a <two>DEAD box motif</two>? <one>RNA Helicases</one>.
425
+ - A single <one>gap junction channel</one> is <two>composed of two ... </two>? <one>Connexons</one>. URL: https://en.wikipedia.org/wiki/Connexon
426
+ - Nenne einen Hemmer von <one>MDM2</one>. A: Das <one>Arf-Gen Produkt</one>.
427
+ - <one>Welche Aufgabe</one> haben die <two>Cajal-Körper</two>? Sie synthetisieren kleine Kern-RNAs (<one>small nuclear RNAs</one>).
428
+ - <one>Wie</one> entsteht ein <two>Autolysosom</two>? Durch <one>Fusion</one> eines <two>Lysosom</two> mit einem <two>Autophagosom</two>.
429
+ - Name <one>two</one> <two>microtubule organizing centers</two>. A: (1) <one>centrosome</one> (2) <one>centrioles</one>
430
+ - <one>Clathrin</one> besteht aus? 3 leichten und 3 schweren Ketten. URL: https://de.wikipedia.org/wiki/Clathrin
431
+ - Name something in a cell that is <one>bipolar</one>. A: The <one>mitotic spindle</one>, also called <two>the spindle apparatus</two>. URL: https://en.wikipedia.org/wiki/Spindle_apparatus
432
+ - Name <one>a trivial difference</one> between a <two>late endosome</two> and an <two>early endosome</two>. A: A <one>late endosome</one> <two>is larger than</two> the <three>early endosome</three> - thus, <four>size is a key difference here</four>.
433
+ - <one>Wann</one> wurde das <two>Fluid-Mosaic-Modell</two> vorgeschlagen? <one>1972</one>.
434
+ - <one>Pro Sekunde</one> produziert ein erwachsener Mensch wieviele Erythrocyten? About <one>2.000.000</one>.
435
+ - Nenne <one>zwei viel verwendete Detergenzien</one> für beziehungsweise gegen eine <two>biologische Membran</two>. A: (1) <one>Triton X-1000</one> (2) <one>Natriumdodecylsulfat</one>
436
+ - For its synthesis, <one>Cyclin D</one> <two>requires which specific transcription factor</two>? <one>E2F</one>.
437
+ - Welches <one>radioaktive Isotop</one> kann genutzt werden, um die Teilungsaktivität von proliferierenden Zellen zu beobachten? <one>P³²</one>.
438
+ - Angenommen wir sehen <one>zwei Zellen</one> - eine kleinere Zelle und eine größere Zelle. Wir wissen das eine davon eine Stammzelle sein muss. Welche würden wir dann annehmen wäre die Stammzelle? Die größere der beiden Zellen.
439
+ - In der Zellbiologie ist eine <one>Darmepithelzelle</one> ein Beispiel für eine <two>polarisierte Zelle</two>. Welche drei Seiten können wir hier unterscheiden? (1) <one>Apikal</one> (2) <one>Lateral</one> (3) <one>Basal</one>
440
+ - Can <one>Integrins</one> bind to <two>fibronectin</two>? <one>Yes</one>.
441
+ - Give an example for <one>gated transport</one> in cell biology. A: The transfer of material through <one>nuclear pore complexes</one>.
442
+ - What is meant with the expression <one>non-bilayer lipids</one>? These are lipids that can not build a bilayer of lipids.
443
+ - Give another (<i>fancier</i>) term for <one>phagocytosis</one>. A: <one>Cellular cannibalism</one>.
444
+ - <one>cdc42</one> <two>belongs to which family</two>? The <one>Rho family</one>.
445
+ - Warum heissen <one>G-Proteine</one> so (das <one>G</one> in ihrem Namen)? Weil sie <one>Guanin-Nukleotide</one> binden.
446
+ - <one>Phospholipid molecules</one> also include <two>choline</two>. Is choline hydrophilic or hydrophobic? Choline is fairly <one>hydropholic</one>; it is part of the hydrophilic head group of phospholipids as well.
447
+ - Wieso kann <one>Chlorophyll</one> mit Lipiden assoziieren? Weil es eine <one>Alkoholseitenkette</one> besitzt.
448
+ - <one>How many nucleosomes</one> does <two>a single, diploid human cell have</two>? It should have about <one>30 million nucleosomes</one>.
449
+ - <one>What cellular effect</one> may be caused by a <two>phenobarbital-treatment</two>? This will <one>stimulate liver cell division</one> - and thereby <two>liver enlargement</two>.
450
+ - An <one>animal cell</one> <two>contains about n protein molecules</two>? 10¹⁰ protein molecules.
451
+ - <one>Cadherins</one> are linked to the <two>actin cytoskeleton</two> by ...? <one>Catenins</one>.
452
+ - In cellbiology: what is <one>Dynamin</one>? <one>Dynamin</one> is <two>a large GTPase</two>, involved in the scission of nascent vesicles from parent membranes.
453
+ - <one>The longest cells</one> are typically ... ? <one>Nerve cells</one>, aka <two>neurons</two>. <three>Some of these neurons stretch from spine to toe</three>.
454
+ - In humans: <one>Phospholipase C</one> <two>activates which cellular enzyme</two>? <one>Proteinkinase C</one>. URL: https://en.wikipedia.org/wiki/Phospholipase_C#Biological_function
455
+ - <one>How</one> was <two>autophagy</two> initially called? <one>Autolysis</one>.
456
+ - <one>Inositol phospholipids</one> can be <two>phosphorylated at how many positions</two>? <one>3</one> - at <two>3'</two>, <two>4</two>' and <two>5</two>'.
457
+ - <one>Superresolution microscopy</one> <two>may resolve the wavelength range from n nm to n nm</two>? From about <one>40nm</one> to <one>120nm</one>, give or take.
458
+ - <one>Wann</one> wurde der <two>Golgi-Apparat</two> entdeckt? <one>1898</one>.
459
+ - Was ist ein <one>Tendinozyt</one>? Ein <one>Tendinozyt</one> ist eine Fibroblastenart, die im straffen kollagenen parallelfaserigen Bindegewebe von Sehnen vorkommt.
460
+ - <one>Welche Zellen</one> besitzen viel an <two>Albumin-mRNA</two>? <one>Hepatocyten</one>. URL: https://en.wikipedia.org/wiki/Hepatocyte
461
+ - Nenne <one>ein Protein das den Zellzyklus blockieren kann</one>. A: <one>p21</one>.
462
+ - For the <one>retention of a protein in the lumen of the ER</one>, <two>which three aminoacids are important</two>, linked together? <one>K-D-Q</one>.
463
+ - Nenne die <one>vier Bewegungsmöglichkeiten von Phospholipiden</one>. A: (1) "flexion" (2) "rotation" (3) "laterale Diffusion" (4) <one>transversale Diffusion</o
464
+ - <one>Which organelle</one> <two>produces Lysosomes</two>? The <one>Golgi Apparatus</one>. URL: https://en.wikipedia.org/wiki/Golgi_apparatus
465
+ - <one>Mikrotubuli</one> besitzen eine polare Struktur. Welchen funktioniellen Unterschied gibt es zwischen dem +-Ende und dem -Ende? Das plus-Ende hat eine höhere Geschwindigkeit für Ein- und Abbau von Untereinheiten. Am minus-Ende erfolgt der bevorzugte Abbau.
466
+ - <one>Welche Aufgabe</one> hat das <two>Tat protein export system</two> und was heisst <three>tat</three> überhaupt? <one>tat</one> heißt <two>twin arginine translocase</two>. Es transportiert gefaltete Proteine aus dem Cytoplasma hinaus.
467
+ - What is the <one>coatomer</one> in cell biology? The <one>coatomer</one> is <two>a protein complex that coats membrane-bound transport vesicles</two>.
468
+ - The <one>KDEL sequence</one> <two>in peptides</two> is located on the N-terminus or the C-terminus? It is located on the <one>C-Terminus</one> of an amino acid sequence of a protein.
469
+ - Wenn wir <one>Nocodazol</one> zu Zellen geben, <two>was passiert dann</two>? <one>Arrest in der Mitose</one>.
470
+ - Give an example for a <one>quaternary RNA Structure</one>. A: The <one>ribosome</one>.
471
+ - <one>Welches Protein</one> ist <two>Bestandteil der Centrosomen</two>? <one>Gamma-Tubulin</one>. URL: https://de.wikipedia.org/wiki/Tubuline#.CE.B3-Tubulin
472
+ - <one>Welche Aufgabe</one> haben die <two>RAB-Proteine</two> in der Zelle? Sie überprüfen die Spezifität des Andockens eines Vesikels an die Zielorganelle.
473
+ - Give another word for a normally shaped <one>red blood cell</one>. A: A <one>discocyte</one>.
474
+ - Welche <one>zwei wichtige Aufgaben</one> hat <two>Ran</two>/<two>GTP</two>? <one>RanGTP</one> hilft beim Import und Export von Proteinen in und aus dem Nukleus.
475
+ - <one>Welche drei Kräfte</one> dominieren bei der <two>Ligandenbindung</two>? (1) <one>ionische Wechselwirkungen</one> (2) <one>van-der-Waals-Kräfte</one> (3) <one>Wasserstoffbrücken</one>
476
+ - What is a <one>clonogenic assay</one>? A <one>clonogenic assay</one> is <two>a cell biology technique for studying the effectiveness of specific agents on the survival and proliferation of cells</two>.
477
+ - Wie kann man die <one>Mitose</one> <two>genetisch ausschalten</two>? Durch <one>Deletion des Centromers</one>.
478
+ - Name <one>a protein</one> that can <two>severe actin filaments</two>. A: <one>Gelsolin</one>. URL: https://en.wikipedia.org/wiki/Gelsolin
479
+ - Was heisst <one>ERAD</one> in der Zellbiologie? <one>ER-associated degradation</one>. URL: https://en.wikipedia.org/wiki/Endoplasmic-reticulum-associated_protein_degradation
480
+ - Nenne ein Beispiel für einen <one>bidirektionalen Rezeptor</one> der Zelle. A: <one>Integrine</one>.
481
+ - Allgemein formuliert: <one>welche Zellen sind vor allem in der G0 Phase</one>? <one>Ausdifferenzierte Zellen</one>.
482
+ - Is <one>lampbrush DNA</one> <two>special</two>? <one>Yes</one>. The DNA in these lampbrush loops appears to be <one>transcriptionally active</one>, while the majority of DNA in axis is inactive.
483
+ - <one>A human cell</one> has <two>a typical diameter of n micrometres</two>? <one>20 micrometres</one>.
484
+ - In cell biology: what is meant with the abbreviation <one>INM</one>? <one>Inner nuclear membrane</one>.
485
+ - Bei der <one>Renaturierung von DNA</one> benötigen wir <two>warum</two> eine <three>hohe Salzkonzentration</three>? Um die negativen Ladungen der Phosphatgruppen der DNA zu neutralisieren.
486
+ - <one>Paired strands of RNA</one> are arranged how ...? <one>Antiparallel</one>.
487
+ - Why the name <one>cadherin</one>? <one>Cadherin</one> depend on Ca²⁺ ions - removing Ca²⁺ from the extracellular medium causes adhesion mediated by cadherin to come apart.
488
+ - <one>Cells</one> contain <two>extensive sets of intracellular membranes</two>. <three>Together these are called the ... </three>? The <one>endomembrane system</one>. URL: https://en.wikipedia.org/wiki/Endomembrane_system
489
+ - What does a <one>secretory protein</one> truly hate? The <one>cell membrane</one>.
490
+ - <one>How</one> can a cell make sense of many different (external) signals? It can respond to these signals selectively by <one>selectively expressing appropriate receptors</one>.
491
+ - Name <one>an advantage of optical microscopy</one>, in regards to visualizing biological systems. A: <one>Light</one> is relatively <two>nondestructive</two>.
492
+ - <one>What type of light</one> <two>is used in microbiology</two>? <one>Visible light</one> + <one>UV light</one>.
493
+ - What is the <one>common feature</one> <two>among Golgi</two>? They are adjacent to <one>endoplasmic reticulum (ER) exit sites</one>.
494
+ - Are <one>tetraspanins</one> <two>glycosylated</two>? Some are, at the <one>N-terminus</one>.
495
+ - Name <one>a binding protein for beta 1 integrin</one>. A: <one>Talin</one>.
496
+ - In seiner chemischen Struktur ähnelt <one>Phycocyanin</one> wem? Einem <one>unfolded chlorophyll molecule</one>.
497
+ - Precursor of a <one>lysosome</one>? The <one>late endosome</one>. URL: https://en.wikipedia.org/wiki/Endosome#Late_endosomes_to_lysosomes
498
+ - What are <one>professional phagocytes</one>? (1) <one>macrophages</one> (2) <one>neutrophils</one>
499
+ - Die <one>M-Phase</one> im Zellzyklus <two>wird unterteilt in welche Phasen</two>? (1) <one>Karyokinese</one> (2) <one>Zytokinese</one>
500
+ - <one>Wer</one> etablierte das <two>Flüssig-Mosaik-Modell</two> im Jahre 1972? <one>Singer</one> und <one>Nicolson</one>.
501
+ - Es gibt <one>SUN</one> und <one>KASH</one> Proteine. <two>Wo können diese gefunden werden</two>? KASH-Proteine sind dem Cytosol zugewandt, SUN Proteine dem Nucleus (Merkhilfe: Eine sun sieht dem Nucleus von der Form her ähnlich).
502
+ - The famous protein <one>p53</one> actually does not have a mass of 53 kDa but only 43.7 kDa. Why is that the case? <one>p53</one> has a high number of <two>proline</two> residues, which <three>slow its migration on SDS-PAGE</three>, thus making it <four>appear heavier</four> than it actually is.
503
+ - <one>Cells produce</one> which <two>three types of large macromolecules</two>? (1) <one>polysaccharides</one> (2) <one>proteins</one> (3) <one>nucleic acids</one>
504
+ - Der <one>SRPT</one> wirkt auch als ...? <one>GEF</one> - Guanin nucleotide exchange factor.
505
+ - Consider an <one>integrin</one> that is in an <two>active state</two>. <three>What do we know, then</three>? That this integrin will <one>readily form attachments</one>.
506
+ - <one>How</one> can we <two>visualize lateral diffusion of membrane proteins</two>? Via <one>FRAP</one>: <two>Fluorescent Recovery after Photobleaching</two>.
507
+ - Name <one>three photoproteins</one>. A: (1) <one>Aequorin</one> (2) <one>Obelin</one> (3) <one>Phialidin</one>
508
+ - <one>Why</one> may it be an advantage for eukaryotic cells if they can store secretory proteins in membrane compartments? Because this allows them to release these proteins from the cell surface in response to internal or external signals.
509
+ - <one>Wo</one> befinden sich <two>tSNARE Proteine</two> allgemein? <one>tSNARE Proteine</one> befinden sich in der <two>Membran der Zielorganelle</two>.
510
+ - Give another name for <one>histone writers</one>. A: <one>Histone modifying enzymes</one>.
511
+ - <one>Which Cdc</one> <two>activates the APC</two>/<two>C complex</two>? <one>Cdc20</one>.
512
+ - The <one>endoplasmic reticulum</one> is especially important in the synthesis of ... ? <one>lipids</one>.
513
+ - In cellbiology we make use of the CD system, that is the <one>clusters of differentiation</one> - but <two>how is that CD nomenclature factually established and determined</two>? We need to <one>use monoclonal antibodies</one> here. These can selectively bind to these surface clusters.
514
+ - <one>Membrane bending</one> by ... domains? <one>BAR domains</one>. They can induce different curvatues.
515
+ - <one>Actin</one> macht <two>n% der Proteinmasse in einer eukaryoten Zelle aus</two>? <one>Bis zu 20%</one> der Proteinmasse.
516
+ - Anderes Wort für <one>VCCD</one> (<two>Viable Cumulative Cell Days</two>)? <one>Viability Index</one>.
517
+ - Was geschieht beim <one>Spindel-Checkpoint</one>? Die Zelle <one>überprüft ob alle Chromosomen an Spindeln angehängt sind</one>.
518
+ - Wie schützt die Zelle die <one>Plus-Enden von Mikrotubuli</one> vor Depolymerisation? Durch Verankerung in einem <one>capping Protein</one>. Dies verleiht den Plus-Enden einen Schutz.
519
+ - <one>Which cells</one> produce <two>E-selectin</two>? <one>Endothelial cells</one> will produce <two>E-selectin</two> - but only when stimulated by inflammatory hormones or by endoxotins.
520
+ - Give a shorter word for <one>cytoskeletal linker proteins</one>. A: <one>Cytolinkers</one>.
521
+ - <one>Desmin</one> is a protein, a type III intermediate filament. It can also be found in humans. In which type of cells may we find it? <one>Desmin</one> can be found in <two>muscle cells</two>.
522
+ - Give another term for <one>chaperones</one>. A: <one>Folding proteins</one>.
523
+ - Name a factor that may counteract <one>VEGF</one> (<two>vascular endothelial growth factor</two>). A: <one>Endostatin</one>.
524
+ - Was ist eine <one>isokonte Begeißelung</one>? Wenn eine Zelle <one>mehrere Geißeln</one> trägt.
525
+ - <one>Welche zwei Formen</one> des <two>Co-Transport</two> gibt es für eine Zelle? (1) <one>Symport</one> (2) <one>Antiport</one>
526
+ - <one>Microglia</one> are <two>scavenger cells</two>. <three>What is meant with that term</three>? <one>Scavenger cells</one> are cells that engulf and digests debris, as well as invading microorganisms.
527
+ - The <one>Golgi cisternae stack</one> has which 4 functional regions? (1) the cis-Golgi network (CGN) (2) the medial-Golgi (3) the <two>endo-Golgi</two> (4) the <one>trans-Golgi network</one> (<two>TGN</two>)
528
+ - The <one>SV40 T-Antigen</one> can be imported into the nucleus by <two>importins</two>, thanks to the <one>PPKKKRKV signal sequence</one>. <three>How amenable is said sequence to change</three>? <one>Not very amenable at all</one>. If one lysine is replaced by a threonine, no import will happen at all.
529
+ - <one>Which cells</one> may, in general, <two>be more likely to require autocrine signaling</two>? <one>Cancer cells</one>. They often produce extracellular signals that then simulate their own survival and proliferation.
530
+ - In an electron microscope: name <one>two major differences</one> between "lysosomes" and "peroxisomes". A: (1) lysosomes are smaller (2) Lysosomes appear "darker", hence they are more "electron rich", thus, denser.
531
+ - Andere Bezeichnung für die <one>Oberfläche einer Zelle</one>? <one>Cytoplasmamembran</one>.
532
+ - Name a <one>lipid-soluble second messenger</one>. A: <one>Diacylglycerol</one>. URL: https://en.wikipedia.org/wiki/Diglyceride
533
+ - What is the <one>most fundamental task</one> for a cell? The passing on of its genetic information to the next generation of cells.
534
+ - In cell biology: how do we call the methodological step necessary for releasing organelles? <one>Homogenization step</one>.
535
+ - A single <one>NPC</one> <two>can transport n macromolecules per second</two>? <one>1000</one>.
536
+ - <one>Rab-Proteins</one> are <two>what type of proteins</two> exactly? Rab-Proteins are <one>monomeric GTPases</one>.
537
+ - <one>Wo</one> finden wir eine <two>glykosidische Bindung</two> in einem Nukleotid? Zwischen der <one>Base</one> und dem <one>Zucker</one>.
538
+ - Was meinen wir in der Zellbiologie mit dem <one>retrograden Transport</one>? Dies bezeichnet den Transport von der Zellmembran hin zum Zellkern.
539
+ - Name <one>two components</one> of the <two>ER lumen</two>. A: (1) ER tubules (2) <one>ER sheets</one>
540
+ - Name <one>two general advantages</one> associated with <two>subcellular components</two>. A: (1) <one>concentrate metabolic intermediates</one> (2) <one>sequester toxic compounds</one>
541
+ - Besitzen <one>Pilze</one> <two>Centriolen</two>? <one>Nein</one>.
542
+ - In cellbiology we can see the <one>CVT pathway</one>. <two>This abbreviation stands for ... </two>? <one>Cytoplasm-to-vacuole targeting pathway</one>.
543
+ - <one>Wie groß</one> (<two>in nm</two>; von-bis) sind die <three>caveolae</three>? <one>50-100 nm</one>.
544
+ - What exactly is a <one>neoplasm</one>? A <one>neoplasm</one> is an accumulation of <two>abnormally dividing cells</two>.
545
+ - In der Zellbiologie: was sind <one>reticulons</one>? <one>Reticulons</one> sind <two>membranständige Proteine, die das tubuläre endoplasmic reticulum (ER) bilden</two>.
546
+ - Anderer Name für <one>importin-beta-like protein</one>? Karyopherin-Beta-family.
547
+ - Give another name for <one>how cells move</one>. A: <one>Cell motility</one>. URL: https://en.wikipedia.org/wiki/Cell_migration
548
+ - Innerhalb der Zelle: <one>wo</one> spielen <two>Actinfilamente</two> eine Rolle? Sie bilden dynamische Netze unterhalb der Zellmembran.
549
+ - <one>Wo</one> innerhalb der Zelle findet man die <two>zelluläre Phosphotransferase</two>? Dies ist <one>ein Enzym des Golgi apparatus</one>.
550
+ - The protein <one>Dysferlin</one> is linked to which cellular function ...? To <one>skeletal muscle repair</one>.
551
+ - How do we call <one>the disc-like compartments of the Golgi apparatus</one>? <one>Golgi cisternae</one>.
552
+ - <one>Karyopherins</one> are, or can be broadly grouped into, ...? (1) <one>importins</one> (2) <one>exportins</one>
553
+ - Name <one>a protein</one> that <two>can dissociate SNARE pairs</two>. A: <one>NSF</one>.
554
+ - Im Zellkern: nenne ein Protein, das an <one>Importin</one> bindet. A: Das monomere G-Protein <one>Ran</one>. URL: https://en.wikipedia.org/wiki/Ran_%28gene%29
555
+ - Was enthält das <one>Peroxisom</one>? Enzyme, die <one>H₂O₂</one> bilden und abbauen kann.
556
+ - Give another name for <one>DNA-protein intermediary</one>. A: <one>RNA</one>.
557
+ - Ist <one>Myoglobin</one> <two>an intrazellulären Prozessen beteiligt</two>? <one>Ja</one> - und zwar am <two>intrazellulären O₂-Transport</two>.
558
+ - <one>Welche Aufgaben</one> hat <two>das raue ER</two>, <one>welche Aufgaben</one> hat <two>das glatte ER</two>? (1) Aufgaben des rauen ER: Synthese von Membran-, Export- und Lysosomenproteinen (2) Aufgaben des glatten ER: <one>Lipidsynthese</one>
559
+ - Name <one>an organism</one> <two>in which cilia assemble in the cytoplasm</two>. A: <one>Plasmodium falciparum</one>.
560
+ - If we wish to add a <one>fluorescent dye</one> <two>to Tubulin</two>, which one should we use? <one>Rhodamine</one>.
561
+ - When <one>lipids</one> go below the paracrystalline temperature, what do they <two>lose</two>? The ability to <one>rotate</one>.
562
+ - Name one famous <one>cellular Cdk inhibitor</one>. A: <one>p21</one>.
563
+ - What effect may <one>TGF-Beta</one> have on cells? <one>TGF-Beta</one> may <two>force a halt to proliferation</two>.
564
+ - Nenne <one>drei Wachstumsfaktoren</one> inklusive ihres vollen Namens. A: (1) PDGF: Plateled Derived Growth Factor (2) VEGF: Vascular Endothelian Growth Factor (3) <one>EGF</one>: <two>Epidermal Growth Factor</two>
565
+ - Im Jahre <one>2015</one> waren etwa <two>wieviele</two> <three>kleine G-Proteine</three> bekannt? Etwa <one>100</one>.
566
+ - <one>Nitric oxide</one> (NO) has an impact on which part of the Mitochondria? On <one>complex IV</one>, which is <two>cytochrome c oxidase</two>.
567
+ - Was meinen wir in der angewandten Zellbiologie mit <one>"quantum dots"</one> eigentlich? Hier sind primär <one>fluoreszierende Nanopartikel</one> gemeint.
568
+ - When a protein does not have a <one>sorting signal</one>, what will be the result? Such a protein will <one>permanently reside in the cytosol</one>.
569
+ - <one>Coated pits</one> <two>give rise to which structure</two>? <one>Coated vesicles</one>.
570
+ - In the cell: <one>tethering proteins of the membrane</one> do <two>recognize which proteins</two>? They recognize <one>Rab proteins</one>.
571
+ - How are <one>lysosomal hydrolases</one> <two>tagged</two> in the Golgi apparatus? Via <one>mannose-6-phosphate</one> groups.
572
+ - The <one>LDL-LDLR endocytosis pathway</one> begins with sequestering the LDL-LDLR complex on the cell surface into ... ? <one>clathrin-coated pits</one>.
573
+ - Was ist <one>Transmission</one> in der Mikroskopie? Transmission bezeichnet <one>das Durchdringen eines Objektes mit Licht</one>.
574
+ - Wie können wir die <one>Phosphodiesterase</one> hemmen? Durch <one>Koffein</one>. URL: https://de.wikipedia.org/wiki/Coffein#Wirkungsmechanismus
575
+ - Andere Bezeichnung für <one>Glykoprotein der Zelloberfläche</one>? <one>Aggregationsfaktoren</one>.
576
+ - <one>Who</one> are the most complex <two>glycolipids</two>? The <one>gangliosides</one>.
577
+ - Name <one>a small molecule inhibitor of Dynamin</one> that also begins with the letter <two>D</two>. A: <one>Dynasore</one>.
578
+ - <one>Wie</one> bezeichnen wir die Diffusion durch eine Membran? <one>Passiver Transport</one>.
579
+ - What is a <one>Heteroplasmon</one>? This is an eukaryotic cell in which both wild-type and mutant organelle DNA coexist. Sometimes also called a cytohet. URL: https://en.wikipedia.org/wiki/Cytohet
580
+ - Eine <one>aktive Muskelzelle</one> <two>regeneriert pro Sekunde wieviel ATP Moleküle</two>? <one>10 Millionen</one>.
581
+ - What is the <one>end stage</one> of an <two>autolysosome</two>? A <one>residual body</one>.
582
+ - <one>Eps15</one> in der Zelle ist ein <two>multifunctional adaptor protein</two>. Welche Aufgabe hat dies? Reguliert <one>intracellular trafficking</one>.
583
+ - What is the <one>glycosome</one>? The <one>glycosome</one> is a membrane-enclosed organelle that <two>contains glycolytic enzymes</two>.
584
+ - Die Funktion der Energiespeicherung in einer eukaryoten Zelle übernimmt ... ? <one>ATP</one>.
585
+ - <one>Adrenalin</one> bindet an eine Leberzelle. Effekt innerhalb dieser Zelle? Die <one>Glykogenphosphorylase wird aktiviert</one>.
586
+ - What happens if we treat a <one>rat</one> with the drug <two>phenobarbitol</two>? <one>This drug stimulates liver cell division</one>, thereby <two>causing</two> <three>liver enlargement</three>.
587
+ - <one>Wo</one> kann <two>Rab-GTP</two> gefunden werden? An einem <one>Vesikel</one>.
588
+ - <one>Which genes</one> are required for the <two>autophagic pathway</two>? <one>Atg-genes</one>.
589
+ - What is the <one>time hormone</one>? <one>Melatonin</one>. URL: https://en.wikipedia.org/wiki/Melatonin
590
+ - Das <one>KDEL Sequenz</one> am C-Terminus von Proteinen spielt eine wichtige Rolle beim Transport in den ER hinein. <two>Gibt es einen KDEL Rezeptor</two>? <one>Ja</one>, das <two>salvage compartment</two>, als Teil der ER Membran.
591
+ - <one>Menschliche Zellen</one> haben typischerweise einen <two>Zellkern</two>, ausgenommen ... ? Ausgenommen der <one>roten Blutkörperchen</one>. URL: https://de.wikipedia.org/wiki/Erythrozyt
592
+ - How do <one>wee-mutants</one> look in general? Wee-mutants are <one>very small</one>.
593
+ - Anteil von <one>Calmodulin</one> <two>in %</two> an der Proteinmasse in einer typischen eukaryoten Zelle? <one>1%</one>.
594
+ - <one>Wo</one> finden wir den <two>Intermembranraum</two> eines Mitochondriums? Zwischen der äusseren und der inneren Membran.
595
+ - In der Zellbiologie: wofür steht die Abkürzung <one>SNARE</one>? <one>SNAP-(Soluble NSF Attachment Protein)-REceptor</one>. Wenn man das NSF auch noch ausschreibt so kommt man auf "Soluble N-ethylmaleimide-sensitive-factor Attachment Receptor".
596
+ - <one>Detergents</one> <two>are soluble in which specific medium</two>? In <one>water</one>.
597
+ - The <one>conserved building blocks of all cellular membranes are ... </one>? The <one>phospholipids</one>.
598
+ - In der Zellbiologie gibt es die <one>Microbodies</one>. <two>Was wird damit bezeichnet</two>? (1) <one>Peroxisomen</one> (2) <one>Glyoxisomen</one> (3) <one>Glykosomen</one>
599
+ - <one>Which protein</one> <two>assembles new nucleosomes</two>? <one>CAF-1</one> - the <two>chromatin assembly factor</two>. URL: https://en.wikipedia.org/wiki/CAF-1
600
+ - Wie wirkt das Gift <one>Phalloidin</one>? <one>Phalloidin</one> stabilisiert Aktinfilamente, die dadurch ihre Dynamik verlieren.
601
+ - <one>Who</one> and <two>when</two> published the molecular structure of the first nucleotide? <one>Furbery</one>, <two>1951</two>.
602
+ - What does the name <one>Ras</one> - an abbreviation - stand for? <one>Ras</one> is an abbreviation of <two>Rat sarcoma</two>.
603
+ - Inside of a given cell, <one>where</one> may the protein <two>Profilin</two> be found? It can be found <one>bound to an actin monomer</one>.
604
+ - In der Zellbiologie: was ist <one>3D5</one>? Eine <one>tetracycline inducible transfectant cell line</one>.
605
+ - Name the <one>two main classes of membrane proteins</one> that <two>mediate transmembrane traffic</two>. A: (1) <one>transporters</one> (2) <one>channels</one>
606
+ - Name a way how <one>lipid rafts</one> can be observed. A: Via <one>AFM</one> (<two>Atomic Force Microscopy</two>). URL: https://en.wikipedia.org/wiki/Atomic_force_microscopy
607
+ - Name <one>two ways</one> how proteins to be exported can be identified by the cell. A: (1) SecA protein (2) signal recognition particles (SRP)
608
+ - Give another name for a <one>nucleotid</one>. A: <one>Nucleoside-5'-Phosphate</one>.
609
+ - Another term for <one>the translocon</one>? <one>Protein-conducting channel</one>.
610
+ - <one>KDEL</one> ist ein intrazelluläres <two>retention signal</two> für das ER. <three>Aber wie hat man dies nachweisen können, experimentell</three>? Durch <one>in-vitro Mutagenese</one>.
611
+ - Give another name for the <one>Tay-sachs disease</one>? <one>GM2 gangliosidosis</one>.
612
+ - <one>Clathrin</one> is <two>a coating protein</two>. It is associated with proteins, which connect clathrin to vesicle membrane. <three>How are these latter proteins called</three>? <one>Adaptins</one>.
613
+ - <one>Was</one> kann man mit <two>Inhibitors</two> und <two>Uncouplers</two> demonstrieren? Den <one>Elektronenfluss</one> durch Zellkomplexe wie ATPase.
614
+ - <one>Wo</one> befindet sich der <two>Golgi-Apparat</two> und welche Aufgabe hat er? Der <one>Golgi-Apparat</one> befindet sich in der Nähe des ER. Er ist für die Modifizierung und Sortierung von Proteinen verantwortlich.
615
+ - <one>Wer</one> stellte die <two>Zelltheorie</two> auf? <one>Matthias Schleiden</one> und <one>Theodor Schwann</one>.
616
+ - <one>In welche Kategorie</one> fallen <two>I-Cell diseases</two>? <one>Lysosomal storage diseases</one>.
617
+ - <one>Wann</one> genau bildet sich der synaptonemale Komplex? Im <one>Zygotän</one>.
618
+ - In cellbiology: what is <one>Shibire</one>? This is a <one>temperature sensitive phenotype</one> <two>in Drosophila</two>.
619
+ - Who or what can produce <one>transit amplifying cells</one>? <one>Stem cells</one> can.
620
+ - Nenne ein Enzym, das beim lysosomalen Proteinabbau Verwendung findet. A: <one>Cathepsin</one>. URL: https://de.wikipedia.org/wiki/Cathepsine
621
+ - <one>Cell membranes</one> prevent passage of which type of molecules, aside from the size of that molecule? <one>Polar molecules</one>.
622
+ - <one>Ran-GTP</one> can bind to ... ? <one>Importin</one>.
623
+ - What defines the <one>character of a cellular compartment</one>? The <one>composition of the enclosing membrane</one>.
624
+ - How do we call the three <one>MAP-Kinases</one> in mammalian cells? (1) <one>Raf</one> (2) <one>Mek</one> (3) <one>Erk</one>
625
+ - Why do we make use of the <one>Yeast-one-hybrid system</one>? To study <one>protein-DNA interactions</one>.
626
+ - Can <one>Integrins</one> bind to a variety of different ligands? Yes.
627
+ - In cell biology: what does <one>Nups</one> stand for? <one>Nucleoporins</one>.
628
+ - <one>Wo</one> in der Zelle finden <two>N-Glykosylierung</two> und <two>O-Glykosylierung</two> statt? (1) Die <one>O-Glykosylierung</one> findet <two>nur im Golgikomplex</two> statt. (2) Die <one>N-Glykosylierung</one> <two>beginnt im ER und wird im Golgi-Komplex fortgeführt</two>.
629
+ - Why was the name <one>Rab</one> chosen for the <two>Rab proteins</two>? <one>Rab</one>: <two>Rat sarcoma-related in brain</two> proteins.
630
+ - <one>Who</one> initiates the <two>metaphase-to-anaphase</two> transition? The <one>APC</one>/<one>C complex</one>.
631
+ - Welche <one>drei Aussagen</one> trifft <two>die erweiterte Cell Theory</two> von Robert Hooke? (1) All organisms are composed of cells. (2) Cells are the smallest living things. (3) Cells arise only from pre-existing cells.
632
+ - Give an example for a <one>single-pass transmembrane protein</one>. A: The <one>LDL-Receptor</one>.
633
+ - The alkaloid <one>colchicine</one> was <two>first described as a mitotic poison in what year</two>? In the year <one>1934</one>.
634
+ - Im rauhen <one>cytoplasmatischen Retikulum</one>: <two>wo findet man die Ribosomen</two>? Auf der <one>Cytosol-Seite</one>.
635
+ - Was ist <one>spectral tuning</one>? <one>Spectral tuning</one> bedeutet, das verschiedene Pigment-Spektren, sowie andere Faktoren, die diese beeinflussen, durch den Organismus, der diese produziert, adaptiert werden. Also quasi eine "Anpassung an Licht verschiedener Wellenlänge".
636
+ - Give an example from cellbiology where transient interactions with the ECM is important. A: At sites of inflammation, leukocytes bind transiently to endothelial cells lining small blood vessels, before then using transient interactions with the ECM to migrate through connective tissue.
637
+ - <one>Which two classes</one> of <two>apoptotic caspases</two> exist? (1) initiator caspases (2) <one>executioner caspases</one>
638
+ - Name a <one>protein</one> that has a <two>pleckstrin homology domain</two>. A: <one>Dynamin</one>. URL: https://en.wikipedia.org/wiki/Dynamin#Structure
639
+ - What is the main signal for protein delivery into lysosomes via endosomes? The <one>Mannose 6-Phosphate Receptor (MPR)</one>.
640
+ - Name <one>two different forms</one> of <two>cell senescence</two>. A: (1) <one>replicative senescence</one> (2) <one>induced senescence</one>
641
+ - <one>Welches Protein</one> <two>dissoziiert vSNARE</two>/<two>tSNARE Komplex</two>? <one>NSF</one> (unter ATP Verbrauch).
642
+ - We may wish to <one>determine the concentration of dead cells</one>. <two>How to do so, experimentally</two>? We stain via <one>trypanblue</one>, which is a <two>dye exclusion methods</two>.
643
+ - Name <one>three functions of autophagy</one>. A: (1) starvation (recycling of nutrients) (2) protein aggregation (neurodegenerative importance) (3) damaged organelles
644
+ - The <one>RING finger domain</one> is typically involved in ... ? <one>Ubiquitination</one>.
645
+ - Was ist <one>Endocytose</one>? Die Aufnahme von Flüssigkeit sowie großen und kleineren Molekülen in eine eukaryotische Zelle (nicht bei Prokaryoten)
646
+ - In general: <one>activation of p53</one> has which two different possible <two>cellular outcomes</two>? (1) <one>cell-cycle arrest</one> (2) <one>apoptosis</one>
647
+ - <one>Cell surfaces</one> in general tend to be <two>rather positively</two> or <two>rather negatively</two> charged? <one>Cell surfaces</one> tend to be <two>negatively charged</two>.
648
+ - Die <one>t-SNARES</one>: kann man sich das merken, was die auf zellulärer Ebene machen? Ja, über das <one>t ... tethering factor</one> mnemonic.
649
+ - Welche <one>drei Autophagen-Mechanismen</one> existieren? (1) <one>crinophagy</one> (2) <one>macroautophagy</one> (3) <one>microautophagy</one>
650
+ - What is <one>the most important parameter</one> <two>in animal cell culture</two>? The <one>concentration of cells</one>.
651
+ - The <one>human mtDNA</one> codes for <two>n transfer RNAs</two>? <one>22</one>. URL: https://pubmed.ncbi.nlm.nih.gov/15983868/
652
+ - Name the <one>two proteins</one> that control the transition from G2 to M-phase. A: (1) <one>cdk1</one> (2) <one>cyclin B</one>
653
+ - In der <one>Autophagie</one> bei der Zellbiologie: was heisst <two>PAS</two>? <two>Phagosome assembly site</two>.
654
+ - <one>FSH</one> in humans means what? <one>Follicle-stimulating hormones</one>.
655
+ - In cellbiology: name a classic model of <one>motor functions</one>. A: <one>Skin pigmentation in fish</one>.
656
+ - Andere Bezeichnung für <one>transversale Bewegung</one> eines Proteins in einer Zellmembran? <one>Flip-flop</one>.
657
+ - Name two <one>microtubule motors</one>. A: (1) <one>Kinesin</one> (2) <one>Dynein</one>
658
+ - <one>When</one> was the <two>first human neocentromere</two> discovered? In the year <one>1993</one>.
659
+ - What does it tell us if a protein has the designation <one>p38</one> or <one>p53</one> or <one>p88</one>? This refers to the relative molecule mass of 38K or 53K or 88K.
660
+ - <one>Where in a cell</one> can the <two>Ras protein</two> be found? <one>Ras</one> is usually attached to the cell membrane owing to its <two>prenylation</two> and <two>palmitoylation modification</two>.
661
+ - Bei den <one>pH Werten in biologischen Systemen</one>: <two>wie liegt die phosphoryl head group in Membranen vor</two>? <one>Negativ geladen</one>, als <two>Phosphatidate</two>.
662
+ - <one>Plectin</one> is a <two>cytoskeletal linker protein</two>. <three>What size does it have</three>? Plectin is very large, with a size of over <one>500 kDa</one>.
663
+ - What is the <one>Interphase</one>? All but Mitosis; so we have G1, S and G2.
664
+ - What is <one>Hemifusion</one> in cell biology? During membrane fusion, the outer leaflets of the two membranes merge first, whereas the distal membrane leaflets remain separate until the opening of a fusion pore. This intermediate stage is called a hemifusion.
665
+ - The <one>Shibire mutation</one> <two>in Drosophila</two> led to <three>the discovery of which cellular protein</three>? <one>Dynamin</one>. URL: https://pubmed.ncbi.nlm.nih.gov/1674590/
666
+ - In der Zelle: <one>welche Aufgabe</one> hat <two>Stathmin</two>? Stathmin reguliert <one>microtubule dynamics</one>.
667
+ - Wofür steht die Abkürzung bei der <one>MAP Kinase</one>? <one>Mitogen-activated protein kinase</one>. URL: https://de.wikipedia.org/wiki/MAP-Kinase-Weg
668
+ - What is <one>crinophagy</one>? The direct fusion of lysosomes with secretory vesicles.
669
+ - Anteil, in Prozent, von <one>Actin</one> an den Gesamtproteinen in einer eukaryotischen Zelle (<two>von-bis</two>)? Etwa <one>10-20%</one>.
670
+ - Name <one>a drug</one> that can be used to <two>inhibit the function of lysosomes</two>. A: <one>Chloroquin</one>.
671
+ - Andere Bezeichnung für <one>Aktin</one>? <one>Mikrofilamente</one>. Sie haben ja nur einen Durchmesser von etwa 6nm.
672
+ - What does the abbreviation <one>Gamma-TuRC</one> stand for? <one>Gamma-tubulin ring complex</one>.
673
+ - Aus Sicht der Zellbiologie: was passiert wenn das Gen <one>N-Acetylglucosamin-Phosphotransferase</one> ausfällt? Essenzielle Enzyme, wie zum Beispiel Hydrolasen, können nicht mehr ins Lysosom gelangen.
674
+ - Do <one>phospholipids</one> <two>spontaneously form bilayers</two>? Yes, under the appropriate conditions they will.
675
+ - Give another name for the <one>cyclin-dependent kinase inhibitor 1</one>. A: <one>p21</one>.
676
+ - What is a <one>Rab cascade</one> in cell biology? This is the ordered recruitment of sequentially active Rab proteins.
677
+ - Das <one>wichtigste transmembranale Protein in Mitochondrien</one> ist ... ? <one>Porin</one>.
678
+ - <one>Which chaperone</one> is important for <two>posttranslation translocation</two>? <one>BiP</one>.
679
+ - How do we call <one>the interior of the nucleus</one>, for the most part? <one>Nucleoplasm</one>. URL: https://en.wikipedia.org/wiki/Nucleoplasm
680
+ - Was bedeutet <one>Eutelie</one>? <one>Zellkonstanz</one>.
681
+ - What is <one>exocytosis</one>? <one>Exocytosis</one> is an energy-using process by which a cell directs the contents of secretory vesicles into its extracellular space.
682
+ - Wie können wir den Zerfall der Mikrotubuli bewirken? Durch Einsatz von <one>Colchicin</one>.
683
+ - Give another name for the <one>cyclins</one>. A: <one>Cdk regulators</one>.
684
+ - Nenne <one>eine Tiergruppe</one> die <two>keine Intermediärfilamente</two> aufweist. A: <one>Arthropoden</one> haben keine Intermediärfilamente; Pflanzen übrigens auch nicht. URL: http://www.bionity.com/de/lexikon/Intermedi%C3%A4rfilamente.html
685
+ - What are <one>Biologics</one>? Genetically engineered proteins derived from human genes, designed to inhibit specific components of the immune system, especially those that play a role in inflammation.
686
+ - Wie gross kann eine <one>aerobe Zelle</one> werden? So gross das sie gerade noch Sauerstoff aufnehmen und verteilen kann.
687
+ - In cell biology: what is meant with the expression <one>intrinsic fluorescence</one>? When some proteins or small molecules, in a given cell, are <one>naturally fluorescent</one>.
688
+ - What is the protein <one>SOS</one> (<two>son of sevenless</two>) doing? It <one>exchanges GDP → GTP</one>. URL: https://en.wikipedia.org/wiki/Son_of_Sevenless
689
+ - On the outside, the <one>nuclear pore complex</one> contains <two>cytoplasmic filaments</two>. Name two cellular functions that these filaments participate in. A: (1) protein transport (2) <one>mRNA export</one>
690
+ - Wie nennt man <one>die Verschmelzung verschiedenartiger Genome in einer Zelle</one>? <one>Intertaxonische Kombination</one>. (Solche Organismen sind aus genetischer Sicht Chimären).
691
+ - What is <one>autophagy</one>? Degradation of intracellular substrates.
692
+ - <one>Welches Protein</one> kann <two>die cytosolische Menge an cytochrom c</two> <three>messen</three>? <one>Apaf-1</one>.
693
+ - Nenne <one>zwei Beispiele</one> für <two>amphiphile Moleküle</two>. A: (1) <one>Phospholipide</one> (2) <one>Lecithine</one>
694
+ - Für den <one>Zellkern-Export bestimmte Proteine</one> haben oft was? <one>Leucin-reiche Sequenzen</one>.
695
+ - <one>Why</one> do we use a <two>Langmuir-Blodgett trough</two> in a laboratory? We can use it to compress monolayers of molecules on the surface of a given subphase, and then measures surface phenomena due to this compression.
696
+ - <one>Zellen</one> besitzen <two>welche drei Typen</two> von Zell-Zell Verbindungen? (1) tight junctions (2) adhering junctions (3) gap junctions (Merkslogan: T,A,G junctions)
697
+ - In cell biology: what is the main statement central to the <one>cisternal maturation hypothesis</one>? <one>Endoplasmic reticulum ER-derived membranes</one> nucleate new Golgi cisternae.
698
+ - <one>Theodor Engelmann</one> <two>used which organism</two> in his photosynthesis experiment? <one>Cladophora engelmann</one>.
699
+ - <one>When</one> exactly is the <two>sister-chromatid cohesin</two> destroyed? At the start of the <one>Anaphase</one>.
700
+ - Wie <one>nennen</one> wir die charakteristische <two>innere</two> Anordnung der Geißeln der Eukaryoten? <one>9x2+2</one>.
701
+ - What is a <one>chromocyte</one>? Any cell that contains a pigment. URL: https://en.wiktionary.org/wiki/chromocyte
702
+ - Durch <one>Kernporen</one> können <two>kleinere Proteine bis zu einer Grösse von n kDa</two> passiv eindringen? Bis zu <one>60 kDa</one>.
703
+ - The activity of the <one>protein kinase A</one> depends on ... ? The <one>cellular levels of cyclic AMP</one> (<two>cAMP</two>).
704
+ - <one>Wie</one> wird der Export eines Proteins aus dem Nucleus gesteuert? Über <one>NES</one>: <two>Nuclear Export Signal</two>.
705
+ - What is <one>the job</one> of the <two>lipoprotein particles</two>? Carry lipids via the bloodstream to other parts of the body.
706
+ - <one>Desmosomes</one> are <two>anchorage sites</two> for ...? <one>Intermediate filaments</one>.
707
+ - In the cell cycle: what means <one>MUGs</one>? <one>Mitosis</one> with <two>unreplicated genomes</two>.
708
+ - Name <one>an adaptor protein</one> for <two>Ras-Proteins</two>. A: <one>Grb2</one>.
709
+ - Name <one>four structural components</one> of a mitochondrium. A: (1) Outer Membrane (2) <one>Matrix</one> (3) Inner Membrane (4) Intermembrane space
710
+ - Was kann das Protein <one>BAX</one> bewirken? Die <one>Apoptose einer Zelle</one>. URL: https://de.wikipedia.org/wiki/Bax_(Protein)
711
+ - <one>Andere Bezeichnung</one> für <two>anaphase-promoting complex</two>? The <one>cyclosome</one> (Merkhilfe: APC/C heisst der Komplex eigentlich, das 2. C steht eben für <two>Cyclosome</two>).
712
+ - Warum der Name <one>P-Selectine</one>? <one>Platelets</one> (<two>Plättchen</two>).
713
+ - In <one>Tunel Labeling</one>: <two>which antibodies are used</two>? <one>Br(d)U specific antibodies</one>.
714
+ - <one>Where exactly</one> do we find the <two>SECIS element</two>? The <one>SECIS element</one> can be found in the <two>3' UTR</two>.
715
+ - <one>Muskelfasern</one> zeigen im Elektronenmikroskop eine <two>charakteristische Querstreifung</two>, die wodurch verursacht wird? Diese Querstreifung wird durch die <one>Sarkomere</one> verursacht.
716
+ - <one>cGMP</one> <two>can bind to which protein kinase</two>? To the <one>protein kinase G</one>.
717
+ - <one>Menschliche Zellkerne</one> besitzen im Durchschnitt <two>n Kernporen</two> / Zellkern? <one>3000</one>.
718
+ - Do <one>plants</one> use <two>cAMP for signalling</two>? <one>No</one>.
719
+ - In <one>induction of autophagy</one>: <two>who normally inhibits Atg1</two>? The <one>TOR kinase</one>.
720
+ - Give another expression for the phenomenon of two, or more, organelles coming into close apposition. A: <one>Inter-organellar membrane contacts</one>.
721
+ - Nenne ein Zellorganell das <one>Cardiolipin</one> enthält. A: Das Mitochondrium und zwar die innere Membran des Mitochondriums.
722
+ - Can the <one>nuclear lamins</one> be <two>phosphorylated</two>? Most likely, because they can definitely be <one>dephosphorylated</one>.
723
+ - Wie schnell sind <one>G-Proteine</one>, allgemein? Etwa 3 Umwandlungen / <one>Minute</one>.
724
+ - <one>Woran</one> binden die <two>Rab-Domänen</two> der Rab-Proteine? Sie binden an Tethering-Faktoren. Rab-Proteine befinden sich während und nach der Fusion in einem inaktiven, zytosolischen Zustand und stehen so für neue Tethering-Ereignisse zur Verfügung. Der Tethering-Faktor ist auf der Zielmembran.
725
+ - Why is the <one>histone fold</one> so important? So that the <one>histone octamer</one> can form.
726
+ - <one>G-Proteine</one> besitzen was für eine Aktivität? Eine <one>GTPase Aktivität</one>. URL: https://de.wikipedia.org/wiki/G-Proteine
727
+ - What does the <one>signal hypothesis</one> state? The site of synthesis of a protein was determined by the sequence of amino acids in the N-terminal portaion of the polypeptide.
728
+ - Wieso benötigt eine Zelle <one>Ribose-5-phosphat</one>? Zur <one>Synthese</one> von <two>RNA</two> und <two>DNA</two>.
729
+ - Wie heißt das <one>endoplasmatische Retikulum</one> auf Englisch? <one>Endoplasmic reticulum</one>. URL: https://en.wikipedia.org/wiki/Endoplasmic_reticulum
730
+ - How is the inner part of a <one>plasmodesma</one> called? <one>Desmotubule</one>.
731
+ - In cellbiology, related to G proteins: what are the <one>RGS</one>? <one>RGS</one> are <two>Regulators of G protein signaling</two>. They can activate GTPases for heterotrimeric G-protein alpha-subunits.
732
+ - Nenne <one>eine sterolähnliche Verbindung in der Zellmembran</one> von <i>Pseudomonas syringae</i>. A: <one>Hopanoide</one>.
733
+ - Die <one>ATPase</one> besitzt einen <two>F0 Teil</two> und einen <two>F1 Teil</two>. <three>Welcher dieser beiden Teile ist der katalytisch wirkende Teil</three>? <one>F1</one>.
734
+ - The <one>lipid molecules in a cell membrane's continuous double layer</one> are <two>about n nm thick</two>? About <one>5 nm thick</one>.
735
+ - In der Zellbiologie: was kann Dank <one>GFP-tagging</one> zellulär erreicht werden? Wir können so zum Beispiel die Kompartimentierung von Proteinen in der Zelle untersuchen.
736
+ - <one>Wann</one> wurde die <two>RNA-World Hypothesis</two> vorgestellt? Im Jahre <one>1986</one>.
737
+ - Name <one>the three principal organelles</one> of the <two>secretory pathway</two>. A: (1) The <one>ER</one> (2) The <one>Golgi apparatus</one> (3) The <one>plasma membrane</one>
738
+ - What is <one>the total mass</one> of the <two>ATP synthase</two>, <three>in Daltons</three>? <one>600.000 Daltons</one>.
739
+ - Can <one>gap junctions</one> be found in <three>erythrocytes</three>? No. URL: https://en.wikipedia.org/wiki/Gap_junction
740
+ - Name <one>the three principal organelles of the secretory pathway</one>. A: (1) the <one>endoplasmic reticulum</one> (2) the <one>Golgi apparatus</one> (3) the <one>plasma membrane</one>
741
+ - Aus welchen <one>Domänen</one> besteht ein <two>Motorprotein</two>? Aus einer <one>Kopfdomäne</one> sowie einer <one>Schwanzdomäne</one>.
742
+ - Nenne <one>zwei Typen membranständiger Multiproteinkomplexe</one>, die am <two>Transport mitochondrialer Proteine</two> beteiligt sind. A: (1) <one>TIM</one> (2) <one>TOM</one>
743
+ - <one>When</one> is a <two>Rab Protein</two> active? When it has bound <one>GTP</one>.
744
+ - What are <one>sad cells</one>? <one>Cells in culture that die after some weeks</one>.
745
+ - In der Zellbiologie: was ist eine <one>Signalsequenz</one>? Eine <one>Signalsequenz</one> ist eine Peptidsequenz mit der Information wie und wohin ein Protein innerhalb einer Zelle transportiert werden soll.
746
+ - The <one>outer nuclear membrane</one> is continuous with ... ? the <one>endoplasmic reticulum</one>.
747
+ - Define the term <one>cytosol</one>. A: The <one>cytosol</one> is the organelle-free part of the cytoplasm.
748
+ - Was heisst <one>Tom complex</one>? <one>Translocase of the outer mitochondrial membrane</one>.
749
+ - Was ist die Rolle des <one>Pyruvat Dehydrogenase Complex</one> (<one>PDC</one>) in der Zelle? Dieser mitochondriale Porenkomplex <one>importiert Acetyl-CoA</one>.
750
+ - In the cytoplasm, hydrolysis of ... to ... causes <one>dissociation of the export complex</one>. A: "Ran-GTP" -> <one>Ran-GDP</one>.
751
+ - In der Biologie, wo finden wir <one>rafts</one>? In der <one>Membran</one> (es sind <two>Membranproteine</two>).
752
+ - Was sind die <one>Elektronenüberträger</one> innerhalb der Zelle? NAD/H + NADP/H.
753
+ - Ein <one>Lariat</one> hat was für eine Struktur genau? Zirkuläre RNA mit <one>3' OH-Gruppe-</one>.
754
+ - <one>Activated Raf</one> ultimately activates ... ? <one>MAP Kinase</one>.
755
+ - Unterschied zwischen den <one>saturated fatty acids</one> und <one>unsaturated fatty acids</one>? Die saturated fatty acids haben C-C Bindungen die nur Einzelbindungen sind. Die unsaturated fatty acids hingegen haben C=C Bindungen, also Doppelbindungen.
756
+ - <one>Phospholipase C</one> <two>can activate which pathway</two>? The <one>inositol 1,4,5-trisphosphate pathway</one>.
757
+ - The interiors of cellular compartments communicate with one another via ... ? Via <one>transport vesicles</one>.
758
+ - Was wird durch <one>Pinocytose</one> aufgenommen? <one>Flüssigkeiten</one>.
759
+ - In cell biology: what is a <one>retromer</one>? A complex of proteins that has been shown to be important in recycling transmembrane receptors from the endosomes to the trans-Golgi network.
760
+ - <one>When</one> was the structure of the <two>nucleosome core particle</two> solved? In the year <one>1997</one>.
761
+ - The <one>Coatomer</one> consists of <two>how many different coat ("COP")-proteins</two>? <one>7</one>. URL: https://en.wikipedia.org/wiki/Coatomer
762
+ - Der Farbstoff <one>Hämatoxylin</one> färbt was genau innerhalb einer Zelle an? Den <one>Zellkern</one>.
763
+ - There is the <one>Ras superfamily</one>. What does <two>Rab</two> stand for? <one>Ras-like in Brain</one>. URL: https://en.wikipedia.org/wiki/Rab_(G-protein)
764
+ - Nenne einen sehr wichtigen <one>cell survival factor</one>. A: Der <one>Transkriptionsfaktor NF-Kappa Beta</one>. Er aktiviert Gene die für <two>cell-survival Proteine</two> kodieren.
765
+ - Give an example for <one>a monomeric GTPase</one>. A: The <one>Ras-proteins</one>. URL: https://en.wikipedia.org/wiki/Ras_GTPase
766
+ - Give another name for the <one>G0-phase</one>. A: <one>Resting state</one>.
767
+ - What is <one>Transcytosis</one>? Transcytosis is the process by which various macromolecules are transported across / through the interior of a cell.
768
+ - What does it mean when we say that <one>the subunits of actin filaments are asymmetrical</one>? These subunits bind to one another head-to-tail, so that they all point in one direction.
769
+ - <one>Durchmesser einer Kernpore</one>, <two>in nm</two>? Etwa <one>120 nm</one>.
770
+ - Give another name for <one>photoreceptors</one>. A: <one>Molecular light switches</one>.
771
+ - Was bedeutet der Name bei der <one>I-cell disease</one>? <one>Inclusion-cell disease</one>.
772
+ - What is the <one>transitional ER</one>? These are areas of smooth ER that bud off for transport to the Golgi apparatus.
773
+ - Andere Bezeichnung für den <one>Golgi-Komplex</one>. A: <one>Sortierungszentrum</one>.
774
+ - How do we call the vesicles derived from the <one>endoplasmic reticulum</one>? <one>Microsomes</one>. URL: https://en.wikipedia.org/wiki/Microsome
775
+ - Name <one>an important, extracellular matrix protein</one>. A: <one>Fibronectin</one>.
776
+ - Which <one>three components</one> can we find in the ABC transport system? (1) substrate-binding protein (2) membrance-integrated transporter (3) ATP-hydrolyzing protein
777
+ - Name a common (functional) feature of <one>karyopherins</one>. A: <one>Karyopherins</one> interact with <two>Ran proteins</two>.
778
+ - Was sind <one>MDCK Zellen</one>? <one>Madin-Darby canine kidney cells</one>.
779
+ - Was ist ein <one>RNA-Thermosensor</one>? Dies bezeichnet eine RNA, die mittels Veränderung ihrer Sekundärstruktur Temperatur "messen" kann.
780
+ - <one>Caspases</one> cleave the target proteins at? At a specific <one>aspartic acid</one>. URL: https://en.wikipedia.org/wiki/Caspase
781
+ - Wie werden die <one>drei Stapel</one> im Golgi-Apparat genannt? (1) <one>cis</one> (2) <one>medial</one> (3) <one>trans</one>
782
+ - Das Medikament <one>Eribulin</one> bindet woran? An das <one>+Ende wachsender Mikrotubuli</one>.
783
+ - Why is <one>PAS</one> (<two>pre-autophagosomal structure</two>) so important? Most proteins involved in autophagosom formation localize to the PAS at some stage.
784
+ - <one>Diacylglycerol</one> wird als Ausgangssubstanz für welches Phospholipid benötigt? <one>Phosphatidylcholin</one>. URL: https://de.wikipedia.org/wiki/Lecithine
785
+ - When an <one>early endosome</one> becomes a <two>late endosome</two>, aside from morphology, what else may change that is rather important? It will become <one>increasingly acidic</one>.
786
+ - Do <one>growth factors</one> also belong to the group of <two>cytokines</two>? Yes. URL: https://en.wikipedia.org/wiki/Growth_factor
787
+ - Um auf ein <one>Hormon</one> reagieren zu können, brauchen die Zellen ... ? einen <one>Rezeptor</one>.
788
+ - Lysosomaler Enzym-Schutz? Zum einen pH-Optimum von 5-6; zum anderen ein <one>Oligosaccharidpanzer</one>, also <two>hochglykosyliert</two> als Schutz vor Autolyse durch lysosomale Proteasen.
789
+ - How do we call the <one>heterotrimeric G-protein of Rhodopsin</one>? <one>Transducin</one>. URL: https://en.wikipedia.org/wiki/Transducin
790
+ - <one>pH Wert</one> in einem <two>Lysosome</two>? <one>5</one>.
791
+ - Nenne einen Marker in <one>smooth muscle cells</one>. A: <one>Calponin</one>.
792
+ - <one>How</one> is the pH of Lysosomes maintained? By the <one>vacuolar adenosine triphosphatase proton pump</one>.
793
+ - <one>Welches Signalpeptid</one> wird nicht abgespalten? Das <one>Kernlokalisationssignal</one>.
794
+ - Was ist mit dem Begriff <one>primäre Endocytobiose</one> gemeint? Das Aufnehmen eines Prokaryoten und dessen Reduktion auf die Stufe eines Organells im Laufe der Evolution. Wichtig bei der Mitochondrien und Chloroplasten-"Entstehung".
795
+ - <one>Calmodulin</one> besitzt <two>n Ca²⁺ binding sites</two>? <one>4</one>. URL: https://en.wikipedia.org/wiki/Calmodulin
796
+ - What is <one>Pyknosis</one>? This is <one>the irreversible condensation of chromatin in the nucleus of a cell undergoing necrosis or apoptosis</one>.
797
+ - In cell biology: what is the <one>kiss of death</one>? <one>The addition of Ubuiqitin to proteins</one>. This addition often commits the labelled protein to degradation in the 26-S proteasome.
798
+ - <one>Neu synthetisierte Proteine</one> müssen <two>korrekt gefaltet werden</two>. Die dazu <three>notwendigen Hilfsproteine</three> heißen ... ? <one>Chaperone</one>. URL: https://de.wikipedia.org/wiki/Chaperone
799
+ - Welche Aufgabe hat der <one>ComEC Complex</one>? Der ComEC Komplex macht einen Channel (wichtig für die Kompetenz).
800
+ - Andere Bezeichnung für <one>Zellkörper</one>? <one>Perikaryon</one>.
801
+ - <one>Fibrinogen</one> kann vor allem an die Rezeptoren welcher Zellen binden? An die <one>Thrombozyten</one>.
802
+ - Was produziert die <one>Phosphodiesterase</one>? <one>AMP</one>.
803
+ - In der Zellbiologie: was genau heisst <one>Caspase</one>? <one>Cysteinyl-aspartat-spezifische Proteinase</one>.
804
+ - In cell biology: what does <one>FAOS</one> stand for? <one>Fluorescence-assisted organelle sorting</one>.
805
+ - <one>Microfilaments</one> are formed by ... ? <one>Actin</one>.
806
+ - <one>When</one> was the <two>nucleosome</two> discovered? In the year <one>1974</one>.
807
+ - Nenne eine besondere Domäne am <one>EGF-Rezeptor</one>. A: Die <one>Dimerisierungsdomäne</one>.
808
+ - Was heisst <one>iPS</one>? <one>Induzierte, pluripotente Stammzellen</one>.
809
+ - Name a complex similar to the <one>Gamma-TuRC complex</one>. A: The <one>ARP complex</one>.
810
+ - Give another name for the term <one>autophagy</one>. A: <one>Organelle turnover</one>. URL: https://en.wikipedia.org/wiki/Organelle
811
+ - Was ist ein <one>Gewebe</one>? Dies ist <one>ein Verbund von Zellen mit gemeinsamer Funktion</one>.
812
+ - Nenne ein zelluläres Ereignis, das durch <one>exogene Noxen</one> ausgelöst werden kann. A: Die <one>Nekrose</one>.
813
+ - What is the job of the <one>satellite muscle cells</one>? They repair injured muscle cells. Satellite cells can self-renew and proliferate, thus providing new myogenic cells.
814
+ - Was genau ist die <one>Matrix</one> der Mitochondrien? Das ist genau <one>der innerste Teil der Mitochondrien</one>.
815
+ - <one>Below a certain temperature</one>, lipids are in ... which form? They tend to be in a <one>paracrystalline</one> form.
816
+ - <one>Wo</one> findet man die <two>tSNAREs</two>? Auf der <one>Zielorganelle</one>.
817
+ - <one>G-Proteine</one> bestehen aus drei Untereinheiten. Welche davon bindet GTP? Die <one>alpha-Untereinheit</one> bindet (und hydrolysiert) GTP.
818
+ - Aufgabe der <one>Calpaine</one>? <one>Calpaine</one> <two>bauen Muskeleiweiß ab</two>. URL: https://en.wikipedia.org/wiki/Calpain
819
+ - The ability of <one>importins</one> and <one>exportins</one> to transport their cargo is regulated by ...? <one>Ran</one>, a small Ras-related GTPase.
820
+ - What is <one>the central component of the translocon</one>? The <one>Sec61 complex</one>.
821
+ - <one>How</one> is the <two>Ras signal-transduction pathway</two> activated? When e. g. EGF binds to a receptor.
822
+ - Give another, prettier name for <one>pigments</one>. A: <one>Rainbow catchers</one>.
823
+ - <one>Where</one> does the <two>signal peptidase</two> reside? In the <one>ER membrane</one>.
824
+ - <one>Griseofulvin</one> wirkt wie? Griseofulvin hemmt den Spindelapparat der Zelle, indem es an Tubulin bindet.
825
+ - Wie werden die <one>Intermediärfilamente in Nervenzellen</one> genannt? <one>Neurofilamente</one>. URL: https://de.wikipedia.org/wiki/Intermediärfilamente#Typen
826
+ - The <one>Nuclear pore complexes</one> consist of about <two>n different proteins</two>? About <one>30</one>.
827
+ - Wie werden die <one>Intermediärfilamente im Zellkern</one> genannt? <one>Lamina</one>.
828
+ - Nenne die zwei <one>Ionenkanaltypen</one>. A: (1) <one>spannungs-gesteuerte Ionenkanäle</one> (2) <one>liganden-gesteuerte Ionenkanäle</one>
829
+ - The <one>SCF complex</one> promotes ...? <one>Degradation of CKIs</one>.
830
+ - <one>Integrins</one> have how many <two>switchable conformations</two>? <one>2</one> (active/inactive conformation).
831
+ - Warum haben <one>Integrine</one> ihren Namen? Sie haben die Fähigkeit, extrinsische Signale in Veränderungen des Cytoskeletts der betreffenden Zelle zu "integrieren".
832
+ - What are <one>ameloblasts</one>? These are cells that are important for tooth development. They <one>deposit tooth enamel</one>.
833
+ - Wo befinden sich <one>vSNARE Proteine</one>? Sie befinden sich <one>in der Vesikelmembran</one>.
834
+ - <one>Diffusion</one> erfolgt nach <two>welchem Gesetz</two>? Nach dem <one>Fickschen Diffusionsgesetz</one>. URL: https://de.wikipedia.org/wiki/Diffusion#Erstes_Ficksches_Gesetz
835
+ - The <one>ER</one> cycles between ...? The <one>ER membrane</one> and the <one>cytosol</one>.
836
+ - What is the job of <one>Bacteriorhodopsin</one>? This protein functions as <one>a light-activated H+ pump</one> that transfers H+ out of the archaeal cell.
837
+ - Name <one>two things</one> that <two>mature mammalian red blood cells</two> lack. A: (1) <one>nucleus</one> (2) <one>cytoplasmic organelles</one>
838
+ - In cell biology: what does "autophagy" ensure or a given normal cell? <one>Autophagy</one> ensures the synthesis, degradation and recycling of cellular components.
839
+ - The main reaction types of <one>cell synthesis</one> are ... ? <one>Polymerization Reactions</one>.
840
+ - Wieso werden <one>Sterole</one> in die Zellmembran eingebettet und welches Dilemma haben manche Prokaryoten hier? Um sie zu verstärken. Manche Prokaryoten können diese Sterole nicht selbst synthetisieren und nehmen sie aus der Umgebung auf.
841
+ - What is <one>Allotransplantation</one>? When the donor organ comes from a <one>closely related species</one>.
842
+ - Was ist die sogenannte <one>korpuskuläre Absorption</one>? (1) Phagocytose (2) Pinocytose (3) <one>Endocytose</one>
843
+ - What are <one>spheroid cells</one>? This is <one>a 3D cell culture method</one> where a small aggregate of cells grows free of foreign materials.
844
+ - Aufgabe der <one>SUN</one> und <one>KASH</one> Proteine? Sie verbinden den Nucleus und das Cytoplasma durch die Zellkern-Membran.
845
+ - What are <one>primary cultures</one>? These are <one>cultures prepared directly from the tissues of an organism</one>.
846
+ - Wie wird <one>die Länge der Aktinfilamente</one> <two>reguliert</two>? Mit Hilfe der <one>Motorproteine</one>. Diese bewegen sich entlang der Filamente und kürzen sie, wenn sie zu lang werden.
847
+ - Was sind <one>Kinozilien</one>? Das sind <one>Wimpern</one> beim, zum Beispiel, Wimpertierchen.
848
+ - <one>Wann</one> sind Chromosomen <two>unsichtbar</two>? In der <one>Interphase</one>.
849
+ - What is meant with the term <one>Autophagy</one>? <one>Autophagy</one> is a cellular, catabolic mechanism that involves cell degradation of unnecessary cellular components through the actions of lysosomes.
850
+ - <one>Durchmesser eines Nucleosoms</one>? <one>11 nm</one>.
851
+ - <one>Karyopherins</one> are <two>nuclear transport receptors</two> that bind to ... ? <one>Nups</one>.
852
+ - What is the <one>rate-limiting step</one> in the <two>formation of actin filaments</two>? <one>Nucleation</one>.
853
+ - Chemischer Name für <one>Caffeine</one>? <one>1,3,7-trimethylxanthine</one>.
854
+ - <one>Welcher Wachstumsfaktor</one> spielt bei <two>Blutgerinnung</two> und <two>Wundheilung</two> eine Rolle? <one>PDGF</one>. URL: https://en.wikipedia.org/wiki/Platelet-derived_growth_factor
855
+ - What is <one>the main signal</one> for protein delivery into lysosomes? <one>M6P</one> (<two>Mannose 6-phosphate</two>).
856
+ - In cell biology: what do we mean with the term <one>free ribosome</one>? Ribosomes that are not attached to the RER.
857
+ - In cellbiology: what are the <one>CAKs</one>? <one>Cdk-activating kinases</one>.
858
+ - Das Enzym <one>Thymidylate Synthetase</one> benötigt eine Methyl-Gruppe. Woher stammt diese? Von <one>Tetrahydrofolate</one>.
859
+ - Give another name for <one>cytokinesis</one>. A: <one>Cytoplasmic division</one>.
860
+ - <one>Dystrophin</one> bindet ... an die Zellmembran von Muskelzellen. A: <one>Actinfilamente</one>.
861
+ - Bei <one>G-Proteinen</one>: ist der Komplex aus GDP + G(alpha,beta,gamma) aktiv? Nein, er ist <one>inaktiv</one>.
862
+ - What does <one>pinocytosis</one> literally mean? <one>Cellular drinking</one>.
863
+ - Was für ein Typ sind <one>RAB-Proteine</one>? <one>Kleine GTPasen</one>.
864
+ - <one>Dendritische Zellen</one> - was heisst <two>dendritus</two>? <one>Verzweigt</one>.
865
+ - Nenne eine Möglichkeit wie man den Zeitpunkt der <one>S-Phase</one> experimentell bestimmen kann. A: Durch Verwendung von <one>Bromodeoxyuridin</one>.
866
+ - <one>Plectin</one> can bind to ... ? <one>Desmin</one>.
867
+ - <one>Macroautophagy</one> creates what? An <one>autophagic vacuole</one>.
868
+ - Is <one>cell fusion</one> important in <two>practical cellbiology</two>? Give an example. A: Yes, it can be <one>used to produce monoclonal antibodies</one>.
869
+ - Andere Bezeichnung für die <one>Vakuolenmembran</one>? <one>Tonoplast</one>. URL: https://de.wikipedia.org/wiki/Tonoplast
870
+ - <one>When</one> are compartments said to be <two>topologically equivalent</two>? If they can communicate with one another in the sense that molecules can get from one to the other without having to cross a membrane.
871
+ - <one>Formine</one> können die <two>Polymerisation von</two> ... induzieren. A: <one>Aktin</one>.
872
+ - How do we call the clear gel that is part of <one>the matrix surrounding animal cells</one> in a tissue? The <one>extracellular fluid</one> (<one>ECF</one>).
873
+ - What is the <one>opposite</one> of the secretory pathway? The <one>endocytic pathway</one>.
874
+ - Give another name for <one>Ubiquitin E1</one>. A: <one>Ubiquitin-activating enzyme</one>.
875
+ - Wie weit sind <one>die Membranen des Zellkerns</one> voneinander entfernt (von, bis)? <one>10-50 nm</one>.
876
+ - In cellbiology: what is a <one>Shmoo</one>? A shmoo is a budding yeast responding to a pheromone from the opposite mating type (either a or alpha) - Yeast-Cells that undergo mating present this particular structure, and look like such a "shmoo"- thus, the whole process is known as "shmooing".
877
+ - The only <one>direct intercellular junctions</one> that exist in plants are ... ? <one>Plasmodesmata</one>.
878
+ - <one>Integrins</one> can, on the outside of a cell, bind to ... ? <one>Fibronectin</one>.
879
+ - Was ist die Grundlage eines <one>Riboswitch</one>? Wirkt wie ein <one>Schalter</one> - einmal kann er abgelesen werden, ein anderes mal nicht.
880
+ - In der Zellbiologie: was meinen wir mit dem Begriff <one>Heterophagie</one>? Dies ist <one>das Verdauen zellfremder Substanzen</one>.
881
+ - What was the first <one>membrane transport protein</one> whose structure was determined? <one>Bacteriorhodopsin</one>.
882
+ - In der Zellbiologie gibt es <one>COPII</one>. Dieses Protein ist wichtig beim Protein-Transport von RER zum Golgi Apparatus. Wofür steht das Wort COPII? <one>Coat Protein Complex II</one>.
883
+ - Der <one>Austausch von Ionen im ladungsneutralen Gegenstrom</one> heißt ... ? <one>Antiport</one>.
884
+ - Wo finden wir die <one>Cathepsine</one>? Im <one>Lysosom</one>.
885
+ - Warum das <three>g</three> in <one>G1-Phase</one>? <one>g</one> steht hier für <one>gap</one>.
886
+ - In cell biology: whats means <one>dynamic instability</one>? This refers to the coexistence of assembly and disassembly at the + end of a microtubule.
887
+ - Der Durchmesser eines <one>Histon-Oktamers</one> beträgt ... ? <one>11 nm</one>.
888
+ - Nenne eine Möglichkeit wie die Zelle die <one>GTP-Hydrolyse</one> von GPCRs beschleunigen kann. A: Sie kann <one>GAPs</one> (<two>GTPase-aktivierende-Proteine</two>) verwenden.
889
+ - In der Zellbiologie: was heisst <one>ERAD</one>? <one>ER-associated degradation</one>. URL: https://en.wikipedia.org/wiki/Endoplasmic-reticulum-associated_protein_degradation
890
+ - How do we call an <one>inactive caspase</one>? <one>Procaspase</one>.
891
+ - In der Zellbiologie, gib ein anderes Wort an für das <one>KDEL Signal</one>, auf Englisch. A: <one>ER retention sequence</one>.
892
+ - Warum benötigt eine Zelle die <one>Intermediärfilamente</one>? Diese sind die stabilsten Bestandteile des Zytoskeletts. Bei ihnen steht die <one>Stützfunktion</one> im Vordergrund.
893
+ - <one>Prenylation</one> is what? The linkage of C15/C20 units to <one>cysteine side chains</one>.
894
+ - Auf Ebene der Zelle: was bewirkt eine aktivierte <one>Protein-Kinase A</one>? A: Dieses Enzym katalysiert die Phosphorylierung anderer Proteine, was zu einer zellulären Antwort führt (i. e. bei einer vorhergegangengen Aktivierung über einen G-Protein gekoppelten Rezeptor).
895
+ - Name a dangerous but very effective way to stop all cell division. A: <one>High exposure to x-rays</one>.
896
+ - Ist <one>Importin Alpha</one> oder <one>Importin Beta</one> wichtiger? <one>Importin Alpha</one>, denn es bindet an das für den Zellkern bestimmte Protein.
897
+ - Angenommen wir möchten das glatte ER in der Zelle massiv proliferieren lassen. Was könnten wir tun? Wir könnten <one>Barbiturate</one> verwenden.
898
+ - Das <one>BiP Protein</one> ähnelt welch anderem Protein? <one>Hsp70</one>.
899
+ - Innerhalb einer Zelle schaffen Membranen ...? <one>Abgegrenzte Reaktionsräume</one>.
900
+ - What is <one>the most remarkable ER specialization</one>? The <one>rough ER</one>.
901
+ - Name a way how to detect cells in the S-phase. A: For instance, via <one>BrdU Incorporation</one>.
902
+ - Was ist zum <one>Zellkern von Osteoklasten</one> zu sagen? Diese Zellen sind <one>mehrkernig</one>.
903
+ - How do we call a fused t-SNARE and v-SNARE? <one>trans-SNARE complex</one>.
904
+ - What is the main minus-end directed <one>motor-protein</one> on microtubules? <one>Dynein</one>.
905
+ - What is the <one>I-cell disease</one>? Material accumulates in the lysosomes because of the absence of hydrolytic enzymes due to the enzyme phosphotransferase unable to add phosphate groups to mannose in the Golgi complex.
906
+ - Name 3 important jobs for the ER (Endoplasmatic Reticulum). A: (1) lipid-biosynthesis (2) protein biosynthesis (3) intracellular Ca 2+ store
907
+ - Proteine die in die Mitochondrien importiert werden sollen, haben was für eine leader sequence? Am N-Terminus 20 oder mehr Aminosäuren.
908
+ - Wie funktioniert der Import von Proteinen in das Mitochondrium? Mitochondrien haben Rezeptoren, die bestimmte Signalsequenzen binden können.
909
+ - Gib ein Beispiel für eine Serin/Threoninkinase. A: Proteinkinase A.
910
+ - The <one>cytosylic pH</one> <two>is at ...</two>? At about a value of <one>7.2</one>. []
911
+ - Nenne <one>zwei verschiedene Hemmstoffe</one> der <two>cAMP-Phosphodiesterase</two>. A: (1) <one>Coffein</one> (2) <one>Theophyllin</one> []
912
+ - Das <one>clathrin triskelion</one> <two>besteht aus ... </two>? Es ist ein <one>Hexamer</one>, bestehend aus <two>3x schweren Ketten</two> und <two>3x leichten Ketten</two>. []
913
+ - In der Zellbiologie: was heißt <one>Cvt-Pathway</one>? <one>Cytoplasm-to-vacuole targeting</one>. URL: https://en.wikipedia.org/wiki/Cytoplasm-to-vacuole_targeting []
914
+ - Das <one>raue endoplasmatische Retikulum</one> <two>verdankt seine Bezeichnung ... </two>? Den vielen <one>Ribosomen</one>. URL: https://de.wikipedia.org/wiki/Endoplasmatisches_Retikulum#Raues_ER_(granul%C3%A4res_ER) []
915
+ - Wie kann die <one>Funktion eines Ionenkanals</one> gemessen werden? Mit Hilfe der <one>patch clamp</one> Technik. URL: https://en.wikipedia.org/wiki/Patch_clamp []
916
+ - <one>Folded proteins</one> <two>inside of a cell</two> <three>leave the ER where</three>? At <one>ER exit sites</one>. URL: https://pubmed.ncbi.nlm.nih.gov/30304445/ []
917
+ - <one>Importins</one> <two>belong to which family</two>? <one>Karyopherins</one>. URL: https://en.wikipedia.org/wiki/Karyopherin []
918
+ - The <one>plasma membrane</one> <two>contains how many layers of phospholipids</two>? <one>Two</one>. []
919
+ - Wie wird <one>die Hülle einer Muskelfaser</one> <two>genannt</two>? <one>Sarkolemma</one>. URL: https://de.wikipedia.org/wiki/Muskulatur []
920
+ - Vorläufer der <one>Ceramide</one>? <one>Sphingosine</one>. URL: https://de.wikipedia.org/wiki/Ceramide []
921
+ - The <one>MPF</one> (<two>maturation promoting factor</two>) <three>consists of how many subunits</three>? <one>2</one>. []
922
+ - Name one <one>lysosomal storage disease</one>. A: The <one>Tay Sachs disease</one>. URL: https://en.wikipedia.org/wiki/Tay%E2%80%93Sachs_disease []
923
+ - Nenne <one>zwei zentrale, sekundäre Botenstoffe</one>. A: (1) <one>cAMP</one> (2) <one>cGMP</one> []
924
+ - Name one <one>microtubule severing protein</one>. A: <one>Katanin</one>. <two>Easy to rememeber: it is named after the japanese sword katana after all</two>. URL: https://en.wikipedia.org/wiki/Katanin []
925
+ - <one>Welche Aufgabe</one> hat die <two>kontraktile Vakuole</two>? <one>Überschüssiges Wasser</one> <two>wird über die kontraktile Vakuole aus der Zelle gepumpt</two>. URL: https://de.wikipedia.org/wiki/Kontraktile_Vakuole []
926
+ - Was findet am <one>glatten ER</one> statt? Dies ist allgemein <one>der Ort der Lipidsynthese</one>. URL: https://de.wikipedia.org/wiki/Endoplasmatisches_Retikulum []
927
+ - Name an <one>ER stress reaction</one>. A: The <one>unfolded protein response</one>, <two>UPR</two>. URL: https://en.wikipedia.org/wiki/Unfolded_protein_response []
928
+ - The <one>Triskelion</one> is <two>made up of subunits called ... </two>? <one>Clathrin</one>. URL: https://en.wikipedia.org/wiki/Clathrin []
929
+ - Kann das <one>26S-Proteasom</one> <two>im Zellkern gefunden werden</two>? <one>Ja</one>. []
930
+ - Name an <one>enzyme</one> that plays <two>an important role in cellular energy homeostasis</two>. A: <one>AMPK</one> URL: https://en.wikipedia.org/wiki/AMP-activated_protein_kinase []
931
+ - Finden wir <one>in Skelettmuskelzellen</one> <two>mehr ATP</two> oder <two>mehr Kreatinphosphat</two>? Mehr <one>Kreatinphosphat</one>. []
932
+ - Does <one>organelle DNA</one> <two>replicate</two> even in <three>cells that do not divide</three>? <one>Yes</one>. []
933
+ - Andere Bezeichnung für <one>zwischen den Zellen</one>? <one>Interstitiell</one>. URL: https://flexikon.doccheck.com/de/Interstiti []
934
+ - Do <one>microfilaments</one> <two>have a plus and minus end</two>? <one>Yes</one>. URL: https://en.wikipedia.org/wiki/Microfilament []
935
+ - Andere Bezeichnung für <one>Innendruck des Cytoplasmas</one>? <one>Turgor</one>. []
936
+ - Haben <one>Zellen</one> normalerweise <two>mehr GTP</two> oder <two>mehr GDP</two>? <one>Mehr GTP</one>. []
937
+ - Can <one>p53</one> be both <two>acetylated</two> AND <two>phosphorylated</two>, in principle? <one>Yes</one>. []
938
+ - In der Zellbiologie steht die Abkürzung <one>CDK</one> für ... ? <one>Cyclin dependent kinase</one>. URL: https://en.wikipedia.org/wiki/Cyclin-dependent_kinase []
939
+ - <one>Wieviel % der Proteine</one> einer <two>Leberzelle</two> werden <three>pro Stunde über Autophagy degradiert</three>? <one>1%</one>. []
940
+ - Bei den Eukarya: <one>wie wirkt</one> <two>cAMP</two>? <one>Indirekt</one>, über die <two>Proteinkinase A</two>. URL: https://de.wikipedia.org/wiki/Cyclisches_Adenosinmonophosphat []
941
+ - Name <one>a potent inhibitor of autophagy</one>. A: <one>Amino Acids</one>. URL: https://en.wikipedia.org/wiki/Autophagy []
942
+ - How many <one>NPCs</one> does <two>a typical mammalian cell</two> have (<three>from-to</three>)? <one>3000-4000 NPCs</one>. []
943
+ - <one>In einer eukaryoten Zelle</one>: ist eher das <two>ER</two> <three>näher am Zellkern</three> oder der <two>Golgi Komplex</two>? Das ER ist deutlich näher am Zellkern vorzufinden als der Golgi Komplex. []
944
+ - <one>Welche Hypothese</one> konnte durch <two>Louis Pasteur</two> widerlegt werden? Die <one>Spontanzeugungshypothese</one>. URL: https://de.wikipedia.org/wiki/Spontanzeugung []
945
+ - <one>Portaler Transport</one> innerhalb der Zelle ... ? Durch die <one>Kernporen des Zellkerns</one>. []
946
+ - What is the <one>brain</one> <two>of the cell</two>? The <one>nucleus</one>. URL: URL: https://en.wikipedia.org/wiki/Cell_nucleus []
947
+ - <one>Welche Zellen</one> bilden die <two>Myelinschicht</two>? Die <one>Gliazellen</one>. URL: https://de.wikipedia.org/wiki/Gliazelle []
948
+ - Welches <one>Phospholipid</one> <two>trägt eine negative Ladung nach aussen hin</two>? <one>Phosphatidylserin</one>. URL: https://de.wikipedia.org/wiki/Phosphatidylserin []
949
+ - An die <one>Kernmembran</one> schließt ... ? Das <one>Endoplasmatische Retikulum</one> (<two>ER</two>). []
950
+ - Can <one>cells</one> <two>pick up other cells</two> through <three>endocytosis</three>? <one>Yes</one>. []
951
+ - What is <one>the RNA component of SRP</one>? The <one>7SL-RNA</one>. URL: https://en.wikipedia.org/wiki/Signal_recognition_particle_RNA []
952
+ - An <one>autophagic vesicle</one> <two>can fuse with ...</two>? A <one>lysosome</one>. []
953
+ - <one>Welche Zellen</one> sind <two>gegenüber den Effekten einer ionisierenden Strahlen allgemein sehr empfindlich</two>? <one>Zellen</one> die <two>sehr Mitose-aktiv sind</two>. []
954
+ - <one>How many</one> <two>different types of autophagy</two> <three>can be distinguished</three>? <one>Three</one>. []
955
+ - In cell biology: the <one>ARF-GAP1</one> can do what? <one>ARF-GAP1</one> <two>can sense membrane curvature</two>. URL: https://en.wikipedia.org/wiki/ARFGAP1 []
956
+ - <one>Integrine</one> <two>bestehen aus wievielen Untereinheiten</two>? <one>2</one> - <two>Integrine</two> sind somit <three>Heterodimere</three>. []
957
+ - <one>Microtubules</one> <two>are nucleated at which end</two>? At their <one>minus (-) end</one>. []
958
+ - Can <one>proteins</one> contain <two>multiple nuclear localization signal</two> (<three>NLS</three>) sequences? <one>Yes</one>. []
959
+ - What is <one>the most important group of enzymes in the lysosome</one>? The <one>hydrolases</one>. URL: https://en.wikipedia.org/wiki/Lysosome []
960
+ - <one>Cell division</one> <two>creates ... </two>? <one>New cells</one>. []
961
+ - The <one>nucleoporins</one> in a cell often contain different types of ... <two>which two amino acids that are repeated</two>? (1) <one>F</one>: <two>Phenylalanine</two> (2) <one>G</one>: <two>Glycine</two> []
962
+ - <one>Which class of enzymes</one> <two>trigger the events in the cell cycle</two>? <one>Kinases</one>. []
963
+ - Andere Bezeichnung für <one>Mikrofilamente</one>? <one>Aktinfilamente</one>. URL: https://de.wikipedia.org/wiki/Mikrofilamente []
964
+ - <one>DnaA-Protein</one> can be <two>activated by which molecule</two>? <one>ATP</one>. []
965
+ - Nenne <one>das wichtigste</one> <two>monomere G-Protein</two>. A: Das <one>Ras-Protein</one>. URL: https://en.wikipedia.org/wiki/Ras_GTPase []
966
+ - The <one>lysosomal membrane</one> has <two>a single</two> or <two>double phospholipid bilayer</two>? The <one>lysosomal membrane</one> has <two>a single phospholipid layer</two>. []
967
+ - The fibrillar extension of <one>NPC proteins</one> (<two>nucleoporins</two>) contain many repeats of <three>which two amino acids</three>? <one>FG-repeats</one> (<two>Phenylalanine</two> and <two>Glycine</two>). []
968
+ - Do <one>lipids</one> <two>flip-flop</two>? <one>No</one>. []
969
+ - In cellbiology: what does the word <one>ERES</one> mean? <one>ER export site</one>. URL: https://www.researchgate.net/figure/8568278_fig3_Figure-3-Biogenesis-of-Golgi-and-the-ER-export-site-A-Cells-stably-expressing-the []
970
+ - <one>Wo</one> speichert eine Zelle <two>Ca²⁺</two>? Im <one>Lumen des endoplasmatischen Reticulums</one>. []
971
+ - <one>Welchen Durchmesser</one> haben <two>Ribosomen</two> (<three>von-bis</three>)? Etwa <one>20nm - 25nm</one>. URL: https://de.wikipedia.org/wiki/Ribosom#Aufbau_und_Arten []
972
+ - <one>Microfilaments</one> <two>in a cell</two> derive from which <three>protein</three>? From <one>actin</one>. URL: https://en.wikipedia.org/wiki/Microfilament []
973
+ - For <one>autophagy</one> to properly function: which <two>organelle</two> is <three>the most important</three>? The <one>lysosome</one>. []
974
+ - In der Zellbiologie gibt es eine Technik namens <one>FRAP</one>. <two>Wofür steht diese Abkürzung</two>? <one>Fluorescence Recovery after Photobleaching</one>. URL: https://en.wikipedia.org/wiki/Fluorescence_recovery_after_photobleaching []
975
+ - <one>Selenocystein</one> ist was genau? Ein <one>Cystein</one>, <two>bei dem die Schwefelgruppe</two> <three>durch ein reaktiveres Selenium-Atom ersetzt wurde</three>. []
976
+ - Provide <one>another name for</one> <two>intracellular containers</two>. A: <one>Transport vesicles</one>. []
977
+ - Do <one>chloroplast</one> <two>contain ribosomes</two>? <one>Yes</one>. They are smaller than the regular ribosomes though. []
978
+ - Die <one>Motordomäne von Myrosin</one> <two>kann</two> <three>welche zwei Substanzen binden</three>? (1) <one>ATP</one> (2) <one>Actin</one> []
979
+ - Was sind <one>speckles</one>? <one>Protein-Aggregate</one> <two>im Zellkern</two>. URL: https://www.uniprot.org/locations/SL-0186 []
980
+ - Name something in cell biology that has a <one>triskelion structure</one>. A: <one>Clathrin</one>. URL: https://en.wikipedia.org/wiki/Clathrin []
981
+ - <one>Which COP protein</one>, <two>COP I or COP II</two>, functions in <three>intra-Golgi trafficking</three>? <one>COP I</one>. []
982
+ - Proteine die ins <one>Peroxisom</one> transportiert werden, <two>tragen die Signalsequenz am N-Terminus oder am C-Terminus</two>? Am <one>C-Terminus</one>. []
983
+ - In <one>LDL endocytosis</one>: what does <one>LDL</one> stand for? <one>Low Density Lipoprotein</one>. []
984
+ - <one>Average lifetime for a mitochondrium</one> <two>in a liver cell</two>? About <one>10 days</one>. []
985
+ - The <one>ER lumen</one> <two>can store what</two>? The <one>ER lumen</one> <two>can store</two> <three>calcium</three> (<four>Ca²⁺</four>). []
986
+ - <one>Wo</one> findet man <two>Kupffer cells</two>? In der <one>Leber</one>. URL: https://en.wikipedia.org/wiki/Kupffer_cell []
987
+ - Wofür steht der Name <one>P-bodies</one> in der Zellbiologie? <one>Processing bodies</one>. URL: https://en.wikipedia.org/wiki/P-bodies []
988
+ - Nenne <one>einen Prozess</one>, mit dem man <two>RNA-Aptamere herstellen kann</two>. A: <one>SELEX</one>. URL: https://en.wikipedia.org/wiki/Systematic_evolution_of_ligands_by_exponential_enrichment []
989
+ - <one>Export</one> and <one>import receptors</one> <two>are structurally related</two>. <three>They belong to which family</three>? They belong to the family of <one>karyopherins</one>. URL: https://en.wikipedia.org/wiki/Karyopherin []
990
+ - Are <one>Endosomes</one> <two>organelles</two>? <one>Yes</one>. []
991
+ - <one>How</one> can <two>lipid rafts</two> <three>in a cell membrane</three> <four>be observed</four>? The <one>AFM</one> (<one>atomic force microscope</one>) <two>could be used for this purpose</two>. []
992
+ - What is the <one>most abundant disaccharide</one> in Biology? <one>Sucrose</one> (this is actually <two>Saccharose</two>, but we prefer the term Sucrose in the english language). URL: https://en.wikipedia.org/wiki/Sucrose []
993
+ - Ein Botenmolekül <one>will</one> eine Zelle beeinflussen. <two>Was braucht die Zelle hierfür unbedingt</two>? Einen <one>Rezeptor</one>. []
994
+ - A <one>transport vesicles</one> in general <two>carries ... </two>? <one>Cargo</one>. []
995
+ - <one>How</one> are <two>the proteins</two> that make up the <three>nuclear pore complex</three> <four>called</four>? The <one>nucleoporins</one>. URL: https://en.wikipedia.org/wiki/Nucleoporin []
996
+ - What is the purpose of a <one>caveolae</one>? A <one>caveolae</one> <two>protects a cell from stretching</two>. URL: https://pubmed.ncbi.nlm.nih.gov/11551396/ []
997
+ - <one>Why</one> do <two>caspases</two> <two>not instantly kill a cell</two>? Because <one>caspases</one> are synthesized as <two>inactive precursors</two>. []
998
+ - Nenne einen <one>Inhibitor der Phosphodiesterase</one>. A: <one>Koffein</one>. URL: https://de.wikipedia.org/wiki/Coffein []
999
+ - <one>Welches Protein</one> erreicht eine <two>Abschnürung von Vesikeln</two>? <one>Dynamin</one>. URL: https://de.wikipedia.org/wiki/Dynamine []
1000
+ - In cell biology: <one>ARF-GAP1</one> <two>senses what</two>? <one>Membrane curvature</one>. URL: https://en.wikipedia.org/wiki/ARFGAP1 []
1001
+ - <one>Tubulin subunits</one> (Alpha and Beta) <two>can bind what exactly</two>? <one>GDP</one> or <one>GTP</one>. []
1002
+ - Can <one>Integrins</one> bind <two>laminins</two>? <one>Yes</one>. []
1003
+ - <one>Water molecules</one> <two>passage into a cell</two> <three>via ... </three>? This can occur via <one>aquaporines</one>. URL: URL: https://en.wikipedia.org/wiki/Aquaporin []
1004
+ - Name an <one>actin motor</one>. A: <one>Myosin</one>. URL: https://en.wikipedia.org/wiki/Myosin []
1005
+ - <one>Welche Person</one> entdeckte das Phänomen <two>splicing</two>? <one>Joan Steitz</one>. URL: https://medicine.yale.edu/lab/steitz/ []
1006
+ - <one>Proteins</one> that <two>permanently reside in the lumen of the endoplasmic reticulum (ER)</two> seem to be distinguished from newly synthesized secretory proteins by the presence of the C-terminal sequence ... ? <one>KDEL</one>: <two>Lys-Asp-Glu-Leu</two>. []
1007
+ - How do we call <one>the tethering proteins of the Golgi complex</one>? <one>Golgins</one>. URL: https://pubmed.ncbi.nlm.nih.gov/12892780/ []
1008
+ - <one>Mikrotubuli</one> <two>sind am Centrosom</two> <three>+</three> oder <three>-</three>? <one>-</one> []
1009
+ - Was machen <one>GTPasen</one>? <one>GTPasen</one> <two>binden GTP</two> und <three>hydrolysieren dieses dann zu GDP</three>. URL: https://en.wikipedia.org/wiki/GTPase []
1010
+ - <one>Wie</one> wird die <two>PKA</two> (<two>Proteinkinase A</two>) <three>aktiviert</three>? Über <one>cAMP</one>. URL: https://en.wikipedia.org/wiki/Protein_kinase_A []
1011
+ - Was ist die "H & E Färbung"? Hämatolysin + Eosin.