studium 0.14.16

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

Potentially problematic release.


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

Files changed (883) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +2987 -0
  3. data/bin/ask_exam_question +7 -0
  4. data/bin/check_description_of_these_lectures +7 -0
  5. data/bin/curriculum_module_displayer +7 -0
  6. data/bin/cycle +7 -0
  7. data/bin/d10 +7 -0
  8. data/bin/d100 +7 -0
  9. data/bin/d15 +7 -0
  10. data/bin/d20 +7 -0
  11. data/bin/d25 +7 -0
  12. data/bin/d3 +7 -0
  13. data/bin/d30 +7 -0
  14. data/bin/d5 +7 -0
  15. data/bin/determine_curricula +7 -0
  16. data/bin/display_lecture_url +7 -0
  17. data/bin/exam_registration_at +7 -0
  18. data/bin/exam_statistics +7 -0
  19. data/bin/exams_per_month +9 -0
  20. data/bin/finished_exams_at_this_university +7 -0
  21. data/bin/flashcards +7 -0
  22. data/bin/from_curriculum_id_to_university +9 -0
  23. data/bin/location_to_this_exam_topic.rb +7 -0
  24. data/bin/mandatory_continuous_assessment +7 -0
  25. data/bin/mandatory_upcoming_courses +10 -0
  26. data/bin/n_ECTS +7 -0
  27. data/bin/n_exam_questions_already_answered +16 -0
  28. data/bin/nquestions +7 -0
  29. data/bin/nsolved +7 -0
  30. data/bin/open_last_exam_question_asked_file +7 -0
  31. data/bin/passed_exams +7 -0
  32. data/bin/passed_pr/303/274fungsimmanente_courses +7 -0
  33. data/bin/pdf_for +7 -0
  34. data/bin/random_exam_topic +7 -0
  35. data/bin/report_solved_topics +7 -0
  36. data/bin/return_n_ects_from_this_file +7 -0
  37. data/bin/search_for_n_ects +7 -0
  38. data/bin/show_lectures_on_the_commandline +7 -0
  39. data/bin/show_themes +7 -0
  40. data/bin/solved +9 -0
  41. data/bin/solved_ects +7 -0
  42. data/bin/studienkennzahl +7 -0
  43. data/bin/studium +7 -0
  44. data/bin/studium_skeleton +7 -0
  45. data/bin/ufind +7 -0
  46. data/bin/upcoming_exams +7 -0
  47. data/bin/week_parser +7 -0
  48. data/doc/ECTS_CONSIDERATIONS.md +82 -0
  49. data/doc/HOW_TO_DETERMINE_WHICH_PART_IS_THE_QUESTION_AND_WHICH_PART_IS_THE_ANSWER.md +44 -0
  50. data/doc/README.gen +2947 -0
  51. data/doc/SQL_database_specification.md +46 -0
  52. data/doc/deprecated_components.md +24 -0
  53. data/doc/documentation_for_the_file_lecture_information.md +311 -0
  54. data/doc/elegant_colours.md +21 -0
  55. data/doc/statistics/yearly_statistics.md +5 -0
  56. data/doc/todo/todo_for_the_graphical_parts_of_the_studium_gem_including_www_related_aspects.md +32 -0
  57. data/doc/todo/todo_for_the_studium_gem.md +58 -0
  58. data/img/STUDIES.png +0 -0
  59. data/lib/studium/autoinclude.rb +7 -0
  60. data/lib/studium/base/base.rb +3054 -0
  61. data/lib/studium/base/prototype.rb +592 -0
  62. data/lib/studium/c/README.md +2 -0
  63. data/lib/studium/c/a.out +0 -0
  64. data/lib/studium/c/obtain_random_entry.c +11 -0
  65. data/lib/studium/check_and_sanitize/README.md +15 -0
  66. data/lib/studium/check_and_sanitize/check_curriculum_for_correct_separation_of_bachelor_and_master.rb +141 -0
  67. data/lib/studium/check_and_sanitize/check_for_all_exam_topics_being_registered.rb +118 -0
  68. data/lib/studium/check_and_sanitize/check_for_correct_themes_of_each_course.rb +100 -0
  69. data/lib/studium/check_and_sanitize/check_for_existing_description_of_this_lecture.rb +191 -0
  70. data/lib/studium/check_and_sanitize/check_important_exams.rb +113 -0
  71. data/lib/studium/check_and_sanitize/check_the_lecture_information_file.rb +163 -0
  72. data/lib/studium/check_and_sanitize/find_duplicate_lectures.rb +124 -0
  73. data/lib/studium/check_and_sanitize/missing_priority_entry.rb +44 -0
  74. data/lib/studium/check_and_sanitize/sanitize_lecture_information.rb +428 -0
  75. data/lib/studium/check_and_sanitize/sanitize_this_string_containing_the_lva_dates.rb +79 -0
  76. data/lib/studium/colours/colours.rb +572 -0
  77. data/lib/studium/colours/sfancy.rb +46 -0
  78. data/lib/studium/colours/sfile.rb +35 -0
  79. data/lib/studium/colours/simp.rb +40 -0
  80. data/lib/studium/colours/use_colours.rb +39 -0
  81. data/lib/studium/colours/use_this_colour_for_exam_questions_and_exam_answers.rb +80 -0
  82. data/lib/studium/commandline/commandline.rb +932 -0
  83. data/lib/studium/commandline/menu.rb +906 -0
  84. data/lib/studium/constants/colours.rb +14 -0
  85. data/lib/studium/constants/constants.rb +1708 -0
  86. data/lib/studium/constants/image_constants.rb +271 -0
  87. data/lib/studium/constants/regexes.rb +44 -0
  88. data/lib/studium/constants/web_constants.rb +28 -0
  89. data/lib/studium/css/project.css +267 -0
  90. data/lib/studium/curricula/curriculum.rb +210 -0
  91. data/lib/studium/curricula/curriculum_as_string.rb +280 -0
  92. data/lib/studium/curricula/curriculum_module_displayer/constants.rb +33 -0
  93. data/lib/studium/curricula/curriculum_module_displayer/curriculum_module_displayer.rb +417 -0
  94. data/lib/studium/curricula/curriculum_module_displayer/initialize.rb +25 -0
  95. data/lib/studium/curricula/curriculum_module_displayer/menu.rb +45 -0
  96. data/lib/studium/curricula/curriculum_module_displayer/reset.rb +74 -0
  97. data/lib/studium/curricula/curriculum_module_displayer/run.rb +20 -0
  98. data/lib/studium/curricula/curriculum_module_displayer/set_use_this_curriculum.rb +93 -0
  99. data/lib/studium/curricula/curriculum_module_displayer/show_and_report.rb +190 -0
  100. data/lib/studium/curricula/determine_curricula/constants.rb +11 -0
  101. data/lib/studium/curricula/determine_curricula/determine_curricula.rb +36 -0
  102. data/lib/studium/curricula/determine_curricula/help.rb +39 -0
  103. data/lib/studium/curricula/determine_curricula/initialize.rb +48 -0
  104. data/lib/studium/curricula/determine_curricula/menu.rb +151 -0
  105. data/lib/studium/curricula/determine_curricula/misc.rb +403 -0
  106. data/lib/studium/curricula/determine_curricula/report.rb +143 -0
  107. data/lib/studium/curricula/determine_curricula/reset.rb +59 -0
  108. data/lib/studium/curricula/determine_curricula/run.rb +19 -0
  109. data/lib/studium/curricula/determine_elective_courses_in_this_curriculum.rb +112 -0
  110. data/lib/studium/curricula/display_bachelor_curricula.rb +90 -0
  111. data/lib/studium/curricula/handle_curricula/README.md +9 -0
  112. data/lib/studium/curricula/handle_curricula/handle_curricula.rb +179 -0
  113. data/lib/studium/curricula/handle_curricula/misc.rb +705 -0
  114. data/lib/studium/curricula/mitteilungsbl/303/244tter/mitteilungsbl/303/244tter.rb +323 -0
  115. data/lib/studium/curricula/modules/display_on_the_commandline.rb +319 -0
  116. data/lib/studium/curricula/modules/return_n_ects_in_this_module.rb +75 -0
  117. data/lib/studium/curricula/n_percent_solved_in_this_curriculum.rb +75 -0
  118. data/lib/studium/curricula/prepare_individual_curriculum.rb +304 -0
  119. data/lib/studium/curricula/random_curriculum_creator/random_curriculum_creator.rb +163 -0
  120. data/lib/studium/curricula/show_lectures_of_this_curriculum.rb +114 -0
  121. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/constants.rb +11 -0
  122. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/initialize.rb +27 -0
  123. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/menu.rb +35 -0
  124. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/misc.rb +264 -0
  125. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/report.rb +163 -0
  126. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/reset.rb +64 -0
  127. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/show_lectures_of_this_curriculum_id.rb +38 -0
  128. data/lib/studium/curricula/show_solved_percentage_among_the_registered_curricula.rb +87 -0
  129. data/lib/studium/curricula/sorted_individual_curricula.rb +121 -0
  130. data/lib/studium/ects/boku_ects_splitter.rb +128 -0
  131. data/lib/studium/ects/ects_per_university.rb +179 -0
  132. data/lib/studium/ects/ects_scanner.rb +141 -0
  133. data/lib/studium/ects/ects_to_university_parser.rb +142 -0
  134. data/lib/studium/ects/last_entry_is_curriculum.rb +150 -0
  135. data/lib/studium/ects/n_ects_in_these_lectures.rb +196 -0
  136. data/lib/studium/ects/n_ects_points_in_mandatory_presence_courses.rb +50 -0
  137. data/lib/studium/ects/return_n_ects_from_this_file.rb +59 -0
  138. data/lib/studium/ects/return_n_ects_from_this_url.rb +196 -0
  139. data/lib/studium/ects/search_for_n_ects.rb +614 -0
  140. data/lib/studium/ects/show_completed_ects_in_all_curricula.rb +191 -0
  141. data/lib/studium/ects/show_passed_credits_per_curriculum.rb +276 -0
  142. data/lib/studium/ects/simple_total_ects_points.rb +135 -0
  143. data/lib/studium/ects/solved_ects/constants.rb +19 -0
  144. data/lib/studium/ects/solved_ects/reset.rb +51 -0
  145. data/lib/studium/ects/solved_ects/solved_ects.rb +325 -0
  146. data/lib/studium/ects/solved_ects_per_university/reset.rb +25 -0
  147. data/lib/studium/ects/solved_ects_per_university/solved_ects_per_university.rb +106 -0
  148. data/lib/studium/ects/still_missing.rb +129 -0
  149. data/lib/studium/ects/sum_of_ects.rb +144 -0
  150. data/lib/studium/encoding/encoding.rb +108 -0
  151. data/lib/studium/exam_topics/RNAi_siRNA_and_miRNA +100 -0
  152. data/lib/studium/exam_topics/abfall_als_ressource +86 -0
  153. data/lib/studium/exam_topics/advanced_biochemistry +793 -0
  154. data/lib/studium/exam_topics/advanced_biotechnology +225 -0
  155. data/lib/studium/exam_topics/advanced_cellbiology +105 -0
  156. data/lib/studium/exam_topics/advanced_chemistry +518 -0
  157. data/lib/studium/exam_topics/advanced_microbiology +44 -0
  158. data/lib/studium/exam_topics/advanced_topics_in_plant_sciences +85 -0
  159. data/lib/studium/exam_topics/advanced_virology +229 -0
  160. data/lib/studium/exam_topics/ageing +117 -0
  161. data/lib/studium/exam_topics/agrar_ecology +63 -0
  162. data/lib/studium/exam_topics/agrarmarkt +74 -0
  163. data/lib/studium/exam_topics/agrarphysik +35 -0
  164. data/lib/studium/exam_topics/alcohols +29 -0
  165. data/lib/studium/exam_topics/algorithms +59 -0
  166. data/lib/studium/exam_topics/allergie +76 -0
  167. data/lib/studium/exam_topics/allgemeine_genetik +1006 -0
  168. data/lib/studium/exam_topics/allgemeine_mikrobiologie +977 -0
  169. data/lib/studium/exam_topics/aminoacids +447 -0
  170. data/lib/studium/exam_topics/analytische_chemie_1 +132 -0
  171. data/lib/studium/exam_topics/analytische_chemie_2 +31 -0
  172. data/lib/studium/exam_topics/anatomie +292 -0
  173. data/lib/studium/exam_topics/anorganische_chemie +323 -0
  174. data/lib/studium/exam_topics/anthropologie +117 -0
  175. data/lib/studium/exam_topics/antibodies_and_antigens +770 -0
  176. data/lib/studium/exam_topics/apoptosis +35 -0
  177. data/lib/studium/exam_topics/archaea +95 -0
  178. data/lib/studium/exam_topics/architecture +8 -0
  179. data/lib/studium/exam_topics/artificial_intelligence +85 -0
  180. data/lib/studium/exam_topics/atomemissionsspektrometrie +6 -0
  181. data/lib/studium/exam_topics/audio +11 -0
  182. data/lib/studium/exam_topics/bacteriophages +243 -0
  183. data/lib/studium/exam_topics/basic_biochemistry +1005 -0
  184. data/lib/studium/exam_topics/basic_biotechnology +1004 -0
  185. data/lib/studium/exam_topics/basic_chemistry +1007 -0
  186. data/lib/studium/exam_topics/basic_virology +1010 -0
  187. data/lib/studium/exam_topics/bauwesen +6 -0
  188. data/lib/studium/exam_topics/betriebssysteme +126 -0
  189. data/lib/studium/exam_topics/betriebswirtschaftslehre +29 -0
  190. data/lib/studium/exam_topics/bioanalytik_und_biosensoren +389 -0
  191. data/lib/studium/exam_topics/biochips +79 -0
  192. data/lib/studium/exam_topics/bioelektrochemie +57 -0
  193. data/lib/studium/exam_topics/biofilms +24 -0
  194. data/lib/studium/exam_topics/bioinformatics +507 -0
  195. data/lib/studium/exam_topics/biological_therapeutics +155 -0
  196. data/lib/studium/exam_topics/biologie +139 -0
  197. data/lib/studium/exam_topics/biomarkers +135 -0
  198. data/lib/studium/exam_topics/biomaterials +89 -0
  199. data/lib/studium/exam_topics/biomembranes +6 -0
  200. data/lib/studium/exam_topics/bionik +65 -0
  201. data/lib/studium/exam_topics/biophysik +34 -0
  202. data/lib/studium/exam_topics/biopolymers +10 -0
  203. data/lib/studium/exam_topics/bioprozesstechnik +149 -0
  204. data/lib/studium/exam_topics/bioressourcenmanagement +78 -0
  205. data/lib/studium/exam_topics/birds +3 -0
  206. data/lib/studium/exam_topics/bodenkunde +373 -0
  207. data/lib/studium/exam_topics/bodenmikrobiologie +40 -0
  208. data/lib/studium/exam_topics/cancerbiology +454 -0
  209. data/lib/studium/exam_topics/cell_cultures +221 -0
  210. data/lib/studium/exam_topics/cellbiology +1011 -0
  211. data/lib/studium/exam_topics/cellular_transport_and_protein_secretion +27 -0
  212. data/lib/studium/exam_topics/cellular_vesicles +11 -0
  213. data/lib/studium/exam_topics/cellulose +6 -0
  214. data/lib/studium/exam_topics/chemische_technologie_anorganischer_stoffe +209 -0
  215. data/lib/studium/exam_topics/chemische_technologie_organischer_stoffe +25 -0
  216. data/lib/studium/exam_topics/chemisches_labor +60 -0
  217. data/lib/studium/exam_topics/chemotaxis_quorum_sensing_and_motility_in_prokaryotes +91 -0
  218. data/lib/studium/exam_topics/citric_acid_cycle +80 -0
  219. data/lib/studium/exam_topics/clinical_microbiology +506 -0
  220. data/lib/studium/exam_topics/computer_science +284 -0
  221. data/lib/studium/exam_topics/computer_vision_and_computer_graphics +12 -0
  222. data/lib/studium/exam_topics/crispr +48 -0
  223. data/lib/studium/exam_topics/cyanobacteria +43 -0
  224. data/lib/studium/exam_topics/cytogenetics_and_chromosome_biology +570 -0
  225. data/lib/studium/exam_topics/cytokines +6 -0
  226. data/lib/studium/exam_topics/databases_and_sql +116 -0
  227. data/lib/studium/exam_topics/dna_mutation_and_dna_repair +69 -0
  228. data/lib/studium/exam_topics/dna_replication +57 -0
  229. data/lib/studium/exam_topics/ecogenetics +26 -0
  230. data/lib/studium/exam_topics/ecological_agriculture +12 -0
  231. data/lib/studium/exam_topics/ecology +317 -0
  232. data/lib/studium/exam_topics/economy +211 -0
  233. data/lib/studium/exam_topics/elektronenmikroskopie +356 -0
  234. data/lib/studium/exam_topics/elektrophorese +89 -0
  235. data/lib/studium/exam_topics/elektrotechnik_und_elektrizit/303/244t +41 -0
  236. data/lib/studium/exam_topics/elisa +54 -0
  237. data/lib/studium/exam_topics/embryologie_und_entwicklung +603 -0
  238. data/lib/studium/exam_topics/endospores_and_spores +104 -0
  239. data/lib/studium/exam_topics/enzymes_and_cofactors +353 -0
  240. data/lib/studium/exam_topics/epigenetik +184 -0
  241. data/lib/studium/exam_topics/erste_hilfe +158 -0
  242. data/lib/studium/exam_topics/ethik +138 -0
  243. data/lib/studium/exam_topics/evolution_and_evolutionary_genetics +356 -0
  244. data/lib/studium/exam_topics/excel +7 -0
  245. data/lib/studium/exam_topics/fish +19 -0
  246. data/lib/studium/exam_topics/fluorescence_microscopy +7 -0
  247. data/lib/studium/exam_topics/food_microbiology_and_food_biotechnology +83 -0
  248. data/lib/studium/exam_topics/forensik +11 -0
  249. data/lib/studium/exam_topics/forstwirtschaft +53 -0
  250. data/lib/studium/exam_topics/fortgeschrittene_genetik +576 -0
  251. data/lib/studium/exam_topics/fortgeschrittene_gentechnik +217 -0
  252. data/lib/studium/exam_topics/fortgeschrittene_physik +6 -0
  253. data/lib/studium/exam_topics/fungi +80 -0
  254. data/lib/studium/exam_topics/genetische_krankheiten +187 -0
  255. data/lib/studium/exam_topics/genexpression +1008 -0
  256. data/lib/studium/exam_topics/genomics_and_metagenomics +272 -0
  257. data/lib/studium/exam_topics/gentechnik_und_praktische_biochemie +928 -0
  258. data/lib/studium/exam_topics/geochemistry +67 -0
  259. data/lib/studium/exam_topics/geography +8 -0
  260. data/lib/studium/exam_topics/geologie_und_mineralogie +626 -0
  261. data/lib/studium/exam_topics/geometrie +54 -0
  262. data/lib/studium/exam_topics/geschichte +94 -0
  263. data/lib/studium/exam_topics/gluconeogenesis +64 -0
  264. data/lib/studium/exam_topics/glycogen +25 -0
  265. data/lib/studium/exam_topics/glycolysis +109 -0
  266. data/lib/studium/exam_topics/glykomik +101 -0
  267. data/lib/studium/exam_topics/glyoxylatzyklus +31 -0
  268. data/lib/studium/exam_topics/grassland_cultivation +32 -0
  269. data/lib/studium/exam_topics/hormone +139 -0
  270. data/lib/studium/exam_topics/html +7 -0
  271. data/lib/studium/exam_topics/human_ecology +8 -0
  272. data/lib/studium/exam_topics/hygiene +224 -0
  273. data/lib/studium/exam_topics/imaging_and_microscopy +265 -0
  274. data/lib/studium/exam_topics/immunanalytik +94 -0
  275. data/lib/studium/exam_topics/immunologie +998 -0
  276. data/lib/studium/exam_topics/informatik +103 -0
  277. data/lib/studium/exam_topics/innate_immunity +24 -0
  278. data/lib/studium/exam_topics/insekten +64 -0
  279. data/lib/studium/exam_topics/insulin_and_diabetes +57 -0
  280. data/lib/studium/exam_topics/java +597 -0
  281. data/lib/studium/exam_topics/javascript +14 -0
  282. data/lib/studium/exam_topics/klima +6 -0
  283. data/lib/studium/exam_topics/kryptographie +9 -0
  284. data/lib/studium/exam_topics/landtechnik +26 -0
  285. data/lib/studium/exam_topics/lebensmittel +222 -0
  286. data/lib/studium/exam_topics/lebensmitteltechnologie +16 -0
  287. data/lib/studium/exam_topics/linux +5 -0
  288. data/lib/studium/exam_topics/lipids +95 -0
  289. data/lib/studium/exam_topics/macroeconomics +40 -0
  290. data/lib/studium/exam_topics/marketing +7 -0
  291. data/lib/studium/exam_topics/mathematics +280 -0
  292. data/lib/studium/exam_topics/medizin_und_biomedizinische_technik +251 -0
  293. data/lib/studium/exam_topics/medizinische_chemie_und_pharmazie +416 -0
  294. data/lib/studium/exam_topics/messtechnik_und_regeltechnik +104 -0
  295. data/lib/studium/exam_topics/metabolismus +423 -0
  296. data/lib/studium/exam_topics/meteorologie_und_atmosph/303/244re +91 -0
  297. data/lib/studium/exam_topics/microbial_ecology +35 -0
  298. data/lib/studium/exam_topics/microcontrollers +11 -0
  299. data/lib/studium/exam_topics/mikrobielle_lebensgemeinschaften +33 -0
  300. data/lib/studium/exam_topics/mikrobielle_physiologie +204 -0
  301. data/lib/studium/exam_topics/mitochondria +33 -0
  302. data/lib/studium/exam_topics/mixed +286 -0
  303. data/lib/studium/exam_topics/molecular_biology_of_plants +249 -0
  304. data/lib/studium/exam_topics/molekulare_medizin +133 -0
  305. data/lib/studium/exam_topics/nanotechnologie +453 -0
  306. data/lib/studium/exam_topics/nature_conservation_and_biodiversity +211 -0
  307. data/lib/studium/exam_topics/naturstoffe +9 -0
  308. data/lib/studium/exam_topics/netzwerke +34 -0
  309. data/lib/studium/exam_topics/neurobiology +272 -0
  310. data/lib/studium/exam_topics/nucleotide_sequencing +38 -0
  311. data/lib/studium/exam_topics/nutztierethologie +11 -0
  312. data/lib/studium/exam_topics/object_oriented_modeling +14 -0
  313. data/lib/studium/exam_topics/obstbau +249 -0
  314. data/lib/studium/exam_topics/organische_chemie +1007 -0
  315. data/lib/studium/exam_topics/organische_chemie_2 +125 -0
  316. data/lib/studium/exam_topics/paleobiology +39 -0
  317. data/lib/studium/exam_topics/parasitic_diseases_and_molecular_infection_biology +336 -0
  318. data/lib/studium/exam_topics/patent_law +55 -0
  319. data/lib/studium/exam_topics/pathologie +723 -0
  320. data/lib/studium/exam_topics/pcr +152 -0
  321. data/lib/studium/exam_topics/pentosephosphatweg +41 -0
  322. data/lib/studium/exam_topics/peroxisomes_glycosomes_and_lysosomes +66 -0
  323. data/lib/studium/exam_topics/pflanzenanatomie +255 -0
  324. data/lib/studium/exam_topics/pflanzenbau +24 -0
  325. data/lib/studium/exam_topics/pflanzenschutz +35 -0
  326. data/lib/studium/exam_topics/pflanzenwissenschaften +1009 -0
  327. data/lib/studium/exam_topics/pharmaceutical_biotechnology +251 -0
  328. data/lib/studium/exam_topics/physik +443 -1
  329. data/lib/studium/exam_topics/physikalische_chemie +86 -0
  330. data/lib/studium/exam_topics/physiology_and_histology +520 -0
  331. data/lib/studium/exam_topics/phytochemie +33 -0
  332. data/lib/studium/exam_topics/plant_biotechnology +129 -0
  333. data/lib/studium/exam_topics/plant_breeding +64 -0
  334. data/lib/studium/exam_topics/plant_development +50 -0
  335. data/lib/studium/exam_topics/populationsgenetik +137 -0
  336. data/lib/studium/exam_topics/posttranslationale_modifikation_von_proteinen +195 -0
  337. data/lib/studium/exam_topics/projektmanagement +220 -0
  338. data/lib/studium/exam_topics/prokaryote_genetics +547 -0
  339. data/lib/studium/exam_topics/protein_engineering +16 -0
  340. data/lib/studium/exam_topics/proteolyse +36 -0
  341. data/lib/studium/exam_topics/proteomik +40 -0
  342. data/lib/studium/exam_topics/prozesstechnik +95 -0
  343. data/lib/studium/exam_topics/psychologie +14 -0
  344. data/lib/studium/exam_topics/python +355 -0
  345. data/lib/studium/exam_topics/quality_management +263 -0
  346. data/lib/studium/exam_topics/rechtsgrundlagen +116 -0
  347. data/lib/studium/exam_topics/research_topics_in_immunobiology +42 -0
  348. data/lib/studium/exam_topics/rna_and_dna +457 -0
  349. data/lib/studium/exam_topics/rna_seq +11 -0
  350. data/lib/studium/exam_topics/robotik +6 -0
  351. data/lib/studium/exam_topics/ruby +183 -0
  352. data/lib/studium/exam_topics/ruby_on_rails +63 -0
  353. data/lib/studium/exam_topics/scientific_writing_and_publishing +38 -0
  354. data/lib/studium/exam_topics/semisynthese_von_proteinen_und_nukleotiden +120 -0
  355. data/lib/studium/exam_topics/sexualbiologie +108 -0
  356. data/lib/studium/exam_topics/signal_transduction_and_laser_systems +197 -0
  357. data/lib/studium/exam_topics/splicing_exons_and_introns +63 -0
  358. data/lib/studium/exam_topics/statistik +241 -0
  359. data/lib/studium/exam_topics/stemcells +159 -0
  360. data/lib/studium/exam_topics/stickstofffixierung +76 -0
  361. data/lib/studium/exam_topics/structural_bioinformatics +54 -0
  362. data/lib/studium/exam_topics/strukturbiologie +387 -0
  363. data/lib/studium/exam_topics/system_biology_and_synthetic_biology +103 -0
  364. data/lib/studium/exam_topics/systematische_zoologie +436 -0
  365. data/lib/studium/exam_topics/technical_ecology +144 -0
  366. data/lib/studium/exam_topics/technische_chemie +204 -0
  367. data/lib/studium/exam_topics/technische_grundlagen_der_informatik +39 -0
  368. data/lib/studium/exam_topics/technische_mikrobiologie +393 -0
  369. data/lib/studium/exam_topics/technisches_zeichnen +5 -0
  370. data/lib/studium/exam_topics/the_bacterial_cell_wall +97 -0
  371. data/lib/studium/exam_topics/the_c_plus_plus_programming_language +491 -0
  372. data/lib/studium/exam_topics/the_c_programming_language +129 -0
  373. data/lib/studium/exam_topics/the_cellcycle +89 -0
  374. data/lib/studium/exam_topics/the_european_union +119 -0
  375. data/lib/studium/exam_topics/the_interferon_system +39 -0
  376. data/lib/studium/exam_topics/the_microbiome +164 -0
  377. data/lib/studium/exam_topics/the_universe +26 -0
  378. data/lib/studium/exam_topics/theoretische_chemie +5 -0
  379. data/lib/studium/exam_topics/theoretische_informatik +157 -0
  380. data/lib/studium/exam_topics/thermodynamics +3 -0
  381. data/lib/studium/exam_topics/tierzucht +139 -0
  382. data/lib/studium/exam_topics/toxikologie +447 -0
  383. data/lib/studium/exam_topics/transcription +164 -0
  384. data/lib/studium/exam_topics/translation_ribosomes_and_translational_control +144 -0
  385. data/lib/studium/exam_topics/umweltbiotechnologie +64 -0
  386. data/lib/studium/exam_topics/umweltchemie +233 -0
  387. data/lib/studium/exam_topics/urbanism_and_traffic +19 -0
  388. data/lib/studium/exam_topics/urea_cycle +55 -0
  389. data/lib/studium/exam_topics/vaccines_and_vaccination +246 -0
  390. data/lib/studium/exam_topics/vectors_and_gene_therapy +246 -0
  391. data/lib/studium/exam_topics/verfahrenstechnik +37 -0
  392. data/lib/studium/exam_topics/veterinary_medicine +10 -0
  393. data/lib/studium/exam_topics/vitamine +25 -0
  394. data/lib/studium/exam_topics/wasserkunde +137 -0
  395. data/lib/studium/exam_topics/weinbau +82 -0
  396. data/lib/studium/exam_topics/wissenschaft +18 -0
  397. data/lib/studium/exam_topics/yeast +102 -0
  398. data/lib/studium/exam_topics/zoologie +333 -0
  399. data/lib/studium/exams/afterburn/afterburn.rb +257 -0
  400. data/lib/studium/exams/ask_exam_from_the_upcoming_exams_pool.rb +150 -0
  401. data/lib/studium/exams/ask_exam_topic_question.rb +112 -0
  402. data/lib/studium/exams/ask_question_from_alias.rb +141 -0
  403. data/lib/studium/exams/ask_question_from_any_of_the_still_missing_lectures.rb +131 -0
  404. data/lib/studium/exams/ask_question_from_grouped_themes.rb +141 -0
  405. data/lib/studium/exams/ask_question_from_last_topic.rb +91 -0
  406. data/lib/studium/exams/ask_random_question.rb +195 -0
  407. data/lib/studium/exams/autoinclude.rb +7 -0
  408. data/lib/studium/exams/average_grade.rb +396 -0
  409. data/lib/studium/exams/csv/create_csv_passed_exams_file.rb +217 -0
  410. data/lib/studium/exams/cycle.rb +291 -0
  411. data/lib/studium/exams/dataset.rb +124 -0
  412. data/lib/studium/exams/designate_ten_random_exam_topics/designate_ten_random_exam_topics.rb +88 -0
  413. data/lib/studium/exams/exam/exam.rb +130 -0
  414. data/lib/studium/exams/exam_question/README.md +3 -0
  415. data/lib/studium/exams/exam_question/answer.rb +193 -0
  416. data/lib/studium/exams/exam_question/constants.rb +111 -0
  417. data/lib/studium/exams/exam_question/exam_question.rb +1136 -0
  418. data/lib/studium/exams/exam_question/menu.rb +333 -0
  419. data/lib/studium/exams/exam_question/misc.rb +898 -0
  420. data/lib/studium/exams/exam_question/question.rb +91 -0
  421. data/lib/studium/exams/exam_question/reset.rb +96 -0
  422. data/lib/studium/exams/exam_registration_at/constants.rb +49 -0
  423. data/lib/studium/exams/exam_registration_at/exam_registration_at.rb +242 -0
  424. data/lib/studium/exams/exam_registration_at/help.rb +46 -0
  425. data/lib/studium/exams/exam_registration_at/menu.rb +81 -0
  426. data/lib/studium/exams/exam_registration_at/report_and_show.rb +133 -0
  427. data/lib/studium/exams/exam_registration_at/reset.rb +54 -0
  428. data/lib/studium/exams/exam_statistics_from_this_file/exam_statistics_from_this_file.rb +119 -0
  429. data/lib/studium/exams/exam_topics.rb +194 -0
  430. data/lib/studium/exams/exams.rb +20 -0
  431. data/lib/studium/exams/exams_per_month/exams_per_month.rb +2438 -0
  432. data/lib/studium/exams/exams_this_week.rb +182 -0
  433. data/lib/studium/exams/fix_exam_dates.rb +121 -0
  434. data/lib/studium/exams/frozen.rb +36 -0
  435. data/lib/studium/exams/last_exams/last_exams.rb +398 -0
  436. data/lib/studium/exams/lectures_without_exam_entry.rb +137 -0
  437. data/lib/studium/exams/mandatory_continuous_assessment/mandatory_continuous_assessment.rb +1359 -0
  438. 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
  439. data/lib/studium/exams/n_exams_in_these_topics.rb +404 -0
  440. data/lib/studium/exams/next_exam.rb +107 -0
  441. data/lib/studium/exams/next_exams.rb +378 -0
  442. data/lib/studium/exams/open_exam_associated_url.rb +154 -0
  443. data/lib/studium/exams/open_last_exam_question_asked_file/constants.rb +15 -0
  444. data/lib/studium/exams/open_last_exam_question_asked_file/initialize.rb +29 -0
  445. data/lib/studium/exams/open_last_exam_question_asked_file/open_last_exam_question_asked_file.rb +109 -0
  446. data/lib/studium/exams/push_solved_questions_on_top.rb +180 -0
  447. data/lib/studium/exams/questions_solved_from_day_to_day/questions_solved_from_day_to_day.rb +377 -0
  448. data/lib/studium/exams/remote_ftp_url.rb +52 -0
  449. data/lib/studium/exams/repeat_last_question.rb +78 -0
  450. data/lib/studium/exams/show_all_passed_exams_of_this_university.rb +252 -0
  451. data/lib/studium/exams/show_backlog_of_exams.rb +117 -0
  452. data/lib/studium/exams/show_next_exams_for.rb +133 -0
  453. data/lib/studium/exams/show_themes/constants.rb +28 -0
  454. data/lib/studium/exams/show_themes/menu.rb +61 -0
  455. data/lib/studium/exams/show_themes/misc.rb +537 -0
  456. data/lib/studium/exams/show_themes/reset.rb +62 -0
  457. data/lib/studium/exams/show_themes/show_themes.rb +27 -0
  458. data/lib/studium/exams/show_upcoming_exams/show_upcoming_exams.rb +1146 -0
  459. data/lib/studium/exams/solve_all_questions_from_this_topic.rb +114 -0
  460. data/lib/studium/exams/solved/constants.rb +32 -0
  461. data/lib/studium/exams/solved/help.rb +24 -0
  462. data/lib/studium/exams/solved/initialize.rb +55 -0
  463. data/lib/studium/exams/solved/menu.rb +41 -0
  464. data/lib/studium/exams/solved/reset.rb +28 -0
  465. data/lib/studium/exams/solved/solved.rb +317 -0
  466. data/lib/studium/exams/timetable/timetable.rb +510 -0
  467. data/lib/studium/exams/unsolve_all_questions_from_this_topic.rb +162 -0
  468. data/lib/studium/exams/upcoming_exams/upcoming_exams.rb +556 -0
  469. data/lib/studium/exams/upcoming_exams_at_the_boku/constants.rb +23 -0
  470. data/lib/studium/exams/upcoming_exams_at_the_boku/html.rb +64 -0
  471. data/lib/studium/exams/upcoming_exams_at_the_boku/upcoming_exams_at_the_boku.rb +194 -0
  472. data/lib/studium/exams/upcoming_exams_dataset.rb +247 -0
  473. data/lib/studium/exams/upcoming_registered_exams/upcoming_registered_exams.rb +257 -0
  474. data/lib/studium/exams/upload_exam_topics.rb +360 -0
  475. data/lib/studium/graphviz/README.md +4 -0
  476. data/lib/studium/graphviz/bachelor_vector_based_strategies.dot +160 -0
  477. data/lib/studium/graphviz/master_vector_based_strategies.dot +46 -0
  478. data/lib/studium/gui/gtk3/README.md +1 -0
  479. data/lib/studium/gui/gtk3/ask_exam_question/ask_exam_question.config +6 -0
  480. data/lib/studium/gui/gtk3/ask_exam_question/ask_exam_question.rb +760 -0
  481. data/lib/studium/gui/gtk3/ask_exam_question/manifest.yml +12 -0
  482. data/lib/studium/gui/gtk3/control_panel/control_panel.rb +39 -0
  483. data/lib/studium/gui/gtk3/curriculum_viewer/curriculum_viewer.rb +510 -0
  484. data/lib/studium/gui/gtk3/ects_per_university/ects_per_university.rb +217 -0
  485. data/lib/studium/gui/gtk3/exam_question_widget/exam_question_widget.rb +1888 -0
  486. data/lib/studium/gui/gtk3/expand_time_range/expand_time_range.rb +34 -0
  487. data/lib/studium/gui/gtk3/information_about_a_lecture/information_about_a_lecture.rb +34 -0
  488. data/lib/studium/gui/gtk3/lecture_information/lecture_information.rb +200 -0
  489. data/lib/studium/gui/gtk3/show_upcoming_exams/show_upcoming_exams.rb +34 -0
  490. data/lib/studium/gui/java/exam_question/ExamQuestion$1.class +0 -0
  491. data/lib/studium/gui/java/exam_question/ExamQuestion.class +0 -0
  492. data/lib/studium/gui/java/exam_question/ExamQuestion.java +215 -0
  493. data/lib/studium/gui/javafx/exam_question_widget/exam_question_widget.rb +58 -0
  494. data/lib/studium/gui/jruby/exam_question_widget/exam_question_widget.rb +317 -0
  495. data/lib/studium/gui/libui/ask_exam_question/ask_exam_question.rb +349 -0
  496. data/lib/studium/gui/shared_code/control_panel/control_panel_module.rb +314 -0
  497. data/lib/studium/gui/shared_code/exam_question_widget/exam_question_widget_module.rb +39 -0
  498. data/lib/studium/gui/shared_code/expand_time_range/expand_time_range.css +0 -0
  499. data/lib/studium/gui/shared_code/expand_time_range/expand_time_range_module.rb +190 -0
  500. data/lib/studium/gui/shared_code/information_about_a_lecture/information_about_a_lecture_module.rb +180 -0
  501. data/lib/studium/gui/shared_code/show_upcoming_exams/show_upcoming_exams_module.rb +206 -0
  502. data/lib/studium/images/libui_ask_exam_question.png +0 -0
  503. data/lib/studium/images/outdated.png +0 -0
  504. data/lib/studium/images/small_logos/DNA.png +0 -0
  505. data/lib/studium/images/small_logos/README.md +2 -0
  506. data/lib/studium/images/small_logos/solved.png +0 -0
  507. data/lib/studium/images/studies_favicon.png +0 -0
  508. data/lib/studium/java/Mkdir.java +15 -0
  509. data/lib/studium/java/README.md +2 -0
  510. data/lib/studium/java/ask_exam_question/AskExamQuestion.class +0 -0
  511. data/lib/studium/java/ask_exam_question/AskExamQuestion.java +480 -0
  512. data/lib/studium/java/constants/Constants.class +0 -0
  513. data/lib/studium/java/constants/Constants.java +77 -0
  514. data/lib/studium/java/solved/Solved.class +0 -0
  515. data/lib/studium/java/solved/Solved.java +110 -0
  516. data/lib/studium/java/utility_scripts/OpenLastExamQuestionurlLinkViaTheBrowser.class +0 -0
  517. data/lib/studium/java/utility_scripts/OpenLastExamQuestionurlLinkViaTheBrowser.java +80 -0
  518. data/lib/studium/logging/README.md +2 -0
  519. data/lib/studium/logging/ensure_that_the_log_directory_exists.rb +47 -0
  520. data/lib/studium/logging/html_log_directory.rb +41 -0
  521. data/lib/studium/logging/log_directory.rb +112 -0
  522. data/lib/studium/logging/store_last_question_asked_into_file.rb +137 -0
  523. data/lib/studium/parsers/README.md +2 -0
  524. data/lib/studium/parsers/custom_exam_results_parser.rb +206 -0
  525. data/lib/studium/parsers/parse_lva_dates.rb +233 -0
  526. data/lib/studium/parsers/parse_remote_lecture.rb +331 -0
  527. data/lib/studium/project/project.rb +76 -0
  528. data/lib/studium/requires/common_popular_requires.rb +37 -0
  529. data/lib/studium/requires/commonly_used_requires.rb +14 -0
  530. data/lib/studium/requires/require_class_exams_solved.rb +7 -0
  531. data/lib/studium/requires/require_ects_scripts.rb +27 -0
  532. data/lib/studium/requires/require_encoding.rb +7 -0
  533. data/lib/studium/requires/require_the_check_and_sanitize_files.rb +31 -0
  534. data/lib/studium/requires/require_the_curricula_files.rb +28 -0
  535. data/lib/studium/requires/require_the_exam_question_class.rb +7 -0
  536. data/lib/studium/requires/require_the_exams_files.rb +45 -0
  537. data/lib/studium/requires/require_the_logging_files.rb +23 -0
  538. data/lib/studium/requires/require_the_parsers.rb +28 -0
  539. data/lib/studium/requires/require_the_studium_constants.rb +10 -0
  540. data/lib/studium/requires/require_the_studium_project.rb +60 -0
  541. data/lib/studium/requires/require_the_toplevel_methods.rb +27 -0
  542. data/lib/studium/requires/require_the_utility_scripts.rb +49 -0
  543. data/lib/studium/requires/require_upcoming_exams.rb +7 -0
  544. data/lib/studium/requires/require_yaml.rb +7 -0
  545. data/lib/studium/requires/return_remote_homepage_of_this_lecture.rb +7 -0
  546. data/lib/studium/requires/with_GUI.rb +13 -0
  547. data/lib/studium/requires/www_mode.rb +17 -0
  548. data/lib/studium/statistics/README.md +4 -0
  549. data/lib/studium/statistics/best_exam_months.rb +92 -0
  550. data/lib/studium/statistics/curriculum_comparer.rb +337 -0
  551. data/lib/studium/statistics/determine_exam_statistics_from_this_file.rb +142 -0
  552. data/lib/studium/statistics/exam_topics_that_are_about_to_be_completed.rb +119 -0
  553. data/lib/studium/statistics/max_stats.rb +170 -0
  554. data/lib/studium/statistics/new_questions_per_year.rb +147 -0
  555. data/lib/studium/statistics/report_how_many_ects_points_per_curriculum_were_completed.rb +167 -0
  556. data/lib/studium/statistics/report_how_many_exam_questions_were_answered.rb +473 -0
  557. data/lib/studium/statistics/show_exam_statistics.rb +66 -0
  558. data/lib/studium/statistics/show_which_courses_are_in_a_bachelor_or_master_curriculum_respectively.rb +104 -0
  559. data/lib/studium/statistics/top_stats.rb +127 -0
  560. data/lib/studium/toplevel_methods/all_passed_exams.rb +37 -0
  561. data/lib/studium/toplevel_methods/already_solved_this_lecture.rb +100 -0
  562. data/lib/studium/toplevel_methods/available_topics.rb +156 -0
  563. data/lib/studium/toplevel_methods/calculate_pr/303/274fungsimmanente_lectures_from_this_file.rb +55 -0
  564. data/lib/studium/toplevel_methods/copy_the_last_backup_of_file_lecture_information.rb +34 -0
  565. data/lib/studium/toplevel_methods/curriculum_related_code.rb +1082 -0
  566. data/lib/studium/toplevel_methods/determine_local_directory_of_this_lecture.rb +72 -0
  567. data/lib/studium/toplevel_methods/does_this_course_require_mandatory_presence.rb +51 -0
  568. data/lib/studium/toplevel_methods/download.rb +163 -0
  569. data/lib/studium/toplevel_methods/e.rb +16 -0
  570. data/lib/studium/toplevel_methods/ects_from_lectures.rb +250 -0
  571. data/lib/studium/toplevel_methods/editor.rb +65 -0
  572. data/lib/studium/toplevel_methods/esystem.rb +22 -0
  573. data/lib/studium/toplevel_methods/filter_away_invalid_questions.rb +77 -0
  574. data/lib/studium/toplevel_methods/find_exam_topic_and_exam_title.rb +3538 -0
  575. data/lib/studium/toplevel_methods/handle_archive_of_the_exam_questions.rb +136 -0
  576. data/lib/studium/toplevel_methods/has_this_lecture_been_already_passed_but_the_id_was_changed_lateron.rb +42 -0
  577. data/lib/studium/toplevel_methods/has_this_module_been_completed.rb +206 -0
  578. data/lib/studium/toplevel_methods/install_the_project_on_the_given_hostsystem.rb +32 -0
  579. data/lib/studium/toplevel_methods/is_on_roebe.rb +26 -0
  580. data/lib/studium/toplevel_methods/is_this_exam_topic_included.rb +46 -0
  581. data/lib/studium/toplevel_methods/is_this_homepage_registered.rb +31 -0
  582. data/lib/studium/toplevel_methods/is_this_lecture_a_practical_course.rb +93 -0
  583. data/lib/studium/toplevel_methods/is_this_lecture_registered_in_upcoming_exams.rb +42 -0
  584. data/lib/studium/toplevel_methods/java.rb +32 -0
  585. data/lib/studium/toplevel_methods/lecture_information.rb +108 -0
  586. data/lib/studium/toplevel_methods/lva_numbers.rb +355 -0
  587. data/lib/studium/toplevel_methods/main_dataset.rb +73 -0
  588. data/lib/studium/toplevel_methods/map_input_to_this_curriculum_filename.rb +595 -0
  589. data/lib/studium/toplevel_methods/methods_related_to_directories.rb +225 -0
  590. data/lib/studium/toplevel_methods/methods_related_to_files.rb +209 -0
  591. data/lib/studium/toplevel_methods/misc.rb +288 -0
  592. data/lib/studium/toplevel_methods/n_questions_available.rb +137 -0
  593. data/lib/studium/toplevel_methods/n_topics_available.rb +63 -0
  594. data/lib/studium/toplevel_methods/names_of_all_solved_exams.rb +71 -0
  595. data/lib/studium/toplevel_methods/note_down_the_start_time_and_how_many_exams_have_been_already_solved.rb +69 -0
  596. data/lib/studium/toplevel_methods/opnn.rb +25 -0
  597. data/lib/studium/toplevel_methods/passed_this_exam_on.rb +105 -0
  598. data/lib/studium/toplevel_methods/pristine.rb +69 -0
  599. data/lib/studium/toplevel_methods/read_delay_between_questions_from_file.rb +34 -0
  600. data/lib/studium/toplevel_methods/regexes.rb +90 -0
  601. data/lib/studium/toplevel_methods/registered_for_this_exam.rb +82 -0
  602. data/lib/studium/toplevel_methods/remove_comments.rb +26 -0
  603. data/lib/studium/toplevel_methods/remove_exam_topics_that_were_already_answered.rb +27 -0
  604. data/lib/studium/toplevel_methods/remove_tags.rb +32 -0
  605. data/lib/studium/toplevel_methods/report.rb +435 -0
  606. data/lib/studium/toplevel_methods/return_all_exams_on_this_day.rb +66 -0
  607. data/lib/studium/toplevel_methods/return_dataset_for_this_exam_topic.rb +41 -0
  608. data/lib/studium/toplevel_methods/return_ects_from_this_lecture_stored_in_the_file_lecture_information.rb +194 -0
  609. data/lib/studium/toplevel_methods/return_hash_of_already_solved_lectures.rb +46 -0
  610. data/lib/studium/toplevel_methods/return_last_exam_question.rb +34 -0
  611. data/lib/studium/toplevel_methods/return_local_path_of_this_pwdstud.rb +60 -0
  612. data/lib/studium/toplevel_methods/return_lva_number_of_this_lecture.rb +72 -0
  613. data/lib/studium/toplevel_methods/return_n_percent_solved_from_this_topic.rb +90 -0
  614. data/lib/studium/toplevel_methods/return_n_questions_were_answered_for_this_topic.rb +60 -0
  615. data/lib/studium/toplevel_methods/return_proper_university_image.rb +86 -0
  616. data/lib/studium/toplevel_methods/return_question_answer_string_from_this_topic.rb +63 -0
  617. data/lib/studium/toplevel_methods/return_remote_homepage_of_this_lecture.rb +10951 -0
  618. data/lib/studium/toplevel_methods/return_remote_moodle_link_of_this_lecture.rb +2201 -0
  619. data/lib/studium/toplevel_methods/return_sanitized_dataset_from_the_file_lecture_information.rb +110 -0
  620. data/lib/studium/toplevel_methods/return_theme_of_the_next_upcoming_exam.rb +38 -0
  621. data/lib/studium/toplevel_methods/rinstall2.rb +34 -0
  622. data/lib/studium/toplevel_methods/rti_conflict.rb +35 -0
  623. data/lib/studium/toplevel_methods/runmode.rb +87 -0
  624. data/lib/studium/toplevel_methods/sanitized_dataset_from_file_passed_exams_per_month.rb +52 -0
  625. data/lib/studium/toplevel_methods/set_last_file_for_exam_questions.rb +64 -0
  626. data/lib/studium/toplevel_methods/set_this_cd_alias_to.rb +86 -0
  627. data/lib/studium/toplevel_methods/show_passed_exams_having_this_grade.rb +34 -0
  628. data/lib/studium/toplevel_methods/spacer.rb +18 -0
  629. data/lib/studium/toplevel_methods/time.rb +297 -0
  630. data/lib/studium/toplevel_methods/total_ects_points_passed.rb +72 -0
  631. data/lib/studium/toplevel_methods/try_to_guess_the_most_likely_lva_id.rb +57 -0
  632. data/lib/studium/toplevel_methods/try_to_return_the_expanded_name_of_this_lecture.rb +63 -0
  633. data/lib/studium/toplevel_methods/unfinished.rb +51 -0
  634. data/lib/studium/toplevel_methods/url.rb +100 -0
  635. data/lib/studium/toplevel_methods/verbose_truth.rb +36 -0
  636. data/lib/studium/toplevel_methods/when_was_this_lecture_passed.rb +54 -0
  637. data/lib/studium/toplevel_methods/word_wrap.rb +56 -0
  638. data/lib/studium/toplevel_methods/write_into_file_related_functionality.rb +195 -0
  639. data/lib/studium/toplevel_methods/yes_or_no_ja_oder_nein.rb +33 -0
  640. data/lib/studium/universities_in_austria/README.md +2 -0
  641. data/lib/studium/universities_in_austria/boku/README.md +4 -0
  642. data/lib/studium/universities_in_austria/boku/boku_/303/266ffnungszeiten.rb +28 -0
  643. data/lib/studium/universities_in_austria/boku/show_three_pillars_of_these_lectures.rb +110 -0
  644. data/lib/studium/universities_in_austria/boku/three_pillars.rb +237 -0
  645. data/lib/studium/universities_in_austria/tu_vienna/README.md +6 -0
  646. data/lib/studium/universities_in_austria/tu_vienna/tu_ferien.rb +42 -0
  647. data/lib/studium/universities_in_austria/tu_vienna/tu_/303/266ffnungszeiten.rb +34 -0
  648. data/lib/studium/university_course/university_course.rb +384 -0
  649. data/lib/studium/utility_scripts/attribute_lecture_to_curriculum/attribute_boku_lecture_to_curriculum.rb +384 -0
  650. data/lib/studium/utility_scripts/attribute_lecture_to_curriculum/attribute_lecture_to_curriculum.rb +238 -0
  651. data/lib/studium/utility_scripts/attribute_lectures_to_university/attribute_lectures_to_university.rb +375 -0
  652. data/lib/studium/utility_scripts/audio_stats.rb +171 -0
  653. data/lib/studium/utility_scripts/auto_stud/auto_stud.rb +252 -0
  654. data/lib/studium/utility_scripts/auto_stud/constants.rb +18 -0
  655. data/lib/studium/utility_scripts/auto_stud/initialize.rb +23 -0
  656. data/lib/studium/utility_scripts/auto_stud/misc.rb +18 -0
  657. data/lib/studium/utility_scripts/autopurge_this_lecture_date.rb +93 -0
  658. data/lib/studium/utility_scripts/average_grade_of_this_curriculum.rb +143 -0
  659. data/lib/studium/utility_scripts/blocked_courses.rb +141 -0
  660. data/lib/studium/utility_scripts/calendar/README.md +2 -0
  661. data/lib/studium/utility_scripts/calendar/calendar.rb +251 -0
  662. data/lib/studium/utility_scripts/calendar/misc.rb +35 -0
  663. data/lib/studium/utility_scripts/check_description_of_these_lectures.rb +221 -0
  664. data/lib/studium/utility_scripts/course_registrations/course_registrations.rb +98 -0
  665. data/lib/studium/utility_scripts/create/README.md +2 -0
  666. data/lib/studium/utility_scripts/create/webpage_of_university.rb +129 -0
  667. data/lib/studium/utility_scripts/create/webpage_of_university_BOKU.rb +59 -0
  668. data/lib/studium/utility_scripts/create/webpage_of_university_TU.rb +58 -0
  669. data/lib/studium/utility_scripts/create/webpage_of_university_UniWien.rb +57 -0
  670. data/lib/studium/utility_scripts/create_database/create_database.rb +106 -0
  671. data/lib/studium/utility_scripts/current_lectures_belonging_to_both_bachelor_and_master_curriculum.rb +113 -0
  672. data/lib/studium/utility_scripts/currently_participating_in_these_lectures/currently_participating_in_these_lectures.rb +104 -0
  673. data/lib/studium/utility_scripts/display_lecture_url.rb +176 -0
  674. data/lib/studium/utility_scripts/expand_time_range/expand_time_range.rb +488 -0
  675. data/lib/studium/utility_scripts/finished_exams_at_this_university.rb +94 -0
  676. data/lib/studium/utility_scripts/foreign_language_percentage/constants.rb +23 -0
  677. data/lib/studium/utility_scripts/foreign_language_percentage/foreign_language_percentage.rb +149 -0
  678. data/lib/studium/utility_scripts/foreign_language_percentage/help.rb +31 -0
  679. data/lib/studium/utility_scripts/foreign_language_percentage/initialize.rb +25 -0
  680. data/lib/studium/utility_scripts/foreign_language_percentage/menu.rb +158 -0
  681. data/lib/studium/utility_scripts/foreign_language_percentage/report.rb +62 -0
  682. data/lib/studium/utility_scripts/foreign_language_percentage/reset.rb +50 -0
  683. data/lib/studium/utility_scripts/foreign_language_percentage/run.rb +19 -0
  684. data/lib/studium/utility_scripts/generate_spreadsheet/generate_spreadsheet.rb +354 -0
  685. data/lib/studium/utility_scripts/generate_spreadsheet/misc.rb +144 -0
  686. data/lib/studium/utility_scripts/holidays/holidays.rb +150 -0
  687. data/lib/studium/utility_scripts/homepage_of_these_courses.rb +118 -0
  688. data/lib/studium/utility_scripts/lecture_downloader.rb +107 -0
  689. data/lib/studium/utility_scripts/lectures_attributed_to_universities.rb +336 -0
  690. data/lib/studium/utility_scripts/lva_dates_of_the_important_courses.rb +111 -0
  691. data/lib/studium/utility_scripts/lva_nummer.rb +431 -0
  692. data/lib/studium/utility_scripts/mandatory_lectures_in_this_month/mandatory_lectures_in_this_month.rb +316 -0
  693. data/lib/studium/utility_scripts/name_of_this_lva_id.rb +110 -0
  694. data/lib/studium/utility_scripts/new_stud.rb +324 -0
  695. data/lib/studium/utility_scripts/next_week.rb +103 -0
  696. data/lib/studium/utility_scripts/open_last_exam_question_url_link_via_the_browser.rb +76 -0
  697. data/lib/studium/utility_scripts/passed_ects_per_year/passed_ects_per_year.rb +288 -0
  698. data/lib/studium/utility_scripts/passed_pr/303/274fungsimmanente_courses/passed_pr/303/274fungsimmanente_courses.rb +181 -0
  699. data/lib/studium/utility_scripts/pdf/README.md +2 -0
  700. data/lib/studium/utility_scripts/pdf/create_pdf_file_for_this_exam_topic.rb +355 -0
  701. data/lib/studium/utility_scripts/pdf/hexapdf_support.rb +50 -0
  702. data/lib/studium/utility_scripts/preparatory_meetings/preparatory_meetings.rb +312 -0
  703. data/lib/studium/utility_scripts/priority.rb +164 -0
  704. data/lib/studium/utility_scripts/priority_points/priority_points.rb +263 -0
  705. data/lib/studium/utility_scripts/publish_my_exams.rb +174 -0
  706. data/lib/studium/utility_scripts/regexes/README.md +1 -0
  707. data/lib/studium/utility_scripts/regexes/generate_regex.rb +314 -0
  708. data/lib/studium/utility_scripts/regexes/generate_regexes_for_the_available_moodle_links.rb +55 -0
  709. data/lib/studium/utility_scripts/regexes/generate_regexes_for_the_registered_lectures.rb +48 -0
  710. data/lib/studium/utility_scripts/report_outdated_timetable_entries/report_outdated_timetable_entries.rb +142 -0
  711. data/lib/studium/utility_scripts/report_total_amount_of_questions_and_answers_for.rb +116 -0
  712. data/lib/studium/utility_scripts/report_whether_this_lecture_is_registered_in_the_file_lecture_information.rb +128 -0
  713. data/lib/studium/utility_scripts/resolve_practical_courses_date_conflicts/individual_resolve_practical_courses_date_conflicts.rb +254 -0
  714. data/lib/studium/utility_scripts/resolve_practical_courses_date_conflicts/resolve_practical_courses_date_conflicts.rb +265 -0
  715. data/lib/studium/utility_scripts/scrape_remote_university_url.rb +138 -0
  716. data/lib/studium/utility_scripts/semester_schedule_creator/semester_container.rb +144 -0
  717. data/lib/studium/utility_scripts/semester_schedule_creator/semester_schedule_creator.rb +374 -0
  718. data/lib/studium/utility_scripts/semesterplaner.rb +289 -0
  719. data/lib/studium/utility_scripts/set_aliases_based_on_this_file.rb +97 -0
  720. data/lib/studium/utility_scripts/show_all_passed_master_lectures.rb +119 -0
  721. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/show_conflicting_lva_lectures.rb +1339 -0
  722. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/constants.rb +23 -0
  723. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/menu.rb +63 -0
  724. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/reset.rb +33 -0
  725. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/run.rb +50 -0
  726. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/show_descriptions_of_lectures_belonging_to_this_module.rb +145 -0
  727. data/lib/studium/utility_scripts/show_lecturers/show_lecturers.rb +147 -0
  728. data/lib/studium/utility_scripts/show_lectures/constants.rb +11 -0
  729. data/lib/studium/utility_scripts/show_lectures/help.rb +35 -0
  730. data/lib/studium/utility_scripts/show_lectures/initialize.rb +23 -0
  731. data/lib/studium/utility_scripts/show_lectures/menu.rb +138 -0
  732. data/lib/studium/utility_scripts/show_lectures/misc.rb +606 -0
  733. data/lib/studium/utility_scripts/show_lectures/reset.rb +89 -0
  734. data/lib/studium/utility_scripts/show_lectures/run.rb +28 -0
  735. data/lib/studium/utility_scripts/show_lectures/show_lectures.rb +49 -0
  736. data/lib/studium/utility_scripts/show_lectures_fitting_to_this_language/show_lectures_fitting_to_this_language.rb +121 -0
  737. data/lib/studium/utility_scripts/show_lectures_fitting_to_this_theme/show_lectures_fitting_to_this_theme.rb +105 -0
  738. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/show_lectures_on_the_commandline.rb +3142 -0
  739. data/lib/studium/utility_scripts/show_lectures_on_this_day.rb +149 -0
  740. data/lib/studium/utility_scripts/show_lva_dates_of_this_lecture.rb +169 -0
  741. data/lib/studium/utility_scripts/show_mixed_bachelor_master_courses/show_mixed_bachelor_master_courses.rb +91 -0
  742. data/lib/studium/utility_scripts/show_outdated_lva_dates/show_outdated_lva_dates.rb +210 -0
  743. data/lib/studium/utility_scripts/show_solved_english_lectures/show_solved_english_lectures.rb +139 -0
  744. data/lib/studium/utility_scripts/steop/README.md +4 -0
  745. data/lib/studium/utility_scripts/steop/show_all_steop_lectures.rb +93 -0
  746. data/lib/studium/utility_scripts/steop/steop_lectures_in_this_curriculum.rb +284 -0
  747. data/lib/studium/utility_scripts/steop/steop_lva_dates.rb +119 -0
  748. data/lib/studium/utility_scripts/studienkennzahl.rb +116 -0
  749. data/lib/studium/utility_scripts/studium_skeleton/studium_skeleton.rb +231 -0
  750. data/lib/studium/utility_scripts/stundenplan.rb +595 -0
  751. data/lib/studium/utility_scripts/sync_studium_relevant_entries_one_level_downwards.rb +217 -0
  752. data/lib/studium/utility_scripts/ufind/ufind.rb +98 -0
  753. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/constants.rb +26 -0
  754. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/run.rb +20 -0
  755. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/upcoming_mandatory_presence_courses.rb +187 -0
  756. data/lib/studium/utility_scripts/week_parser/constants.rb +23 -0
  757. data/lib/studium/utility_scripts/week_parser/help.rb +32 -0
  758. data/lib/studium/utility_scripts/week_parser/menu.rb +59 -0
  759. data/lib/studium/utility_scripts/week_parser/misc.rb +373 -0
  760. data/lib/studium/utility_scripts/week_parser/reset.rb +65 -0
  761. data/lib/studium/utility_scripts/week_parser/run.rb +18 -0
  762. data/lib/studium/utility_scripts/week_parser/show.rb +236 -0
  763. data/lib/studium/utility_scripts/week_parser/week_parser.rb +49 -0
  764. data/lib/studium/utility_scripts/weekday_parser.rb +155 -0
  765. data/lib/studium/utility_scripts/weekly_schedule.rb +198 -0
  766. data/lib/studium/utility_scripts/wochenplanung.rb +261 -0
  767. data/lib/studium/version/version.rb +46 -0
  768. data/lib/studium/www/curriculum_displayer.rb +162 -0
  769. data/lib/studium/www/exams.cgi +54 -0
  770. data/lib/studium/www/fast_ask_exam_question.cgi +156 -0
  771. data/lib/studium/www/handle_curricula/handle_curricula.cgi +154 -0
  772. data/lib/studium/www/next_generation_exam_question_trainer/next_generation_exam_question_trainer.cgi +79 -0
  773. data/lib/studium/www/sinatra/app.rb +231 -0
  774. data/lib/studium/www/sinatra/misc.rb +115 -0
  775. data/lib/studium/www/statistics/statistics.cgi +70 -0
  776. data/lib/studium/yaml/ad_hoc_trainer/README.md +2 -0
  777. data/lib/studium/yaml/ad_hoc_trainer/exam_topics.md +15 -0
  778. data/lib/studium/yaml/allowed_themes_for_exams/allowed_themes_for_exams.yml +347 -0
  779. data/lib/studium/yaml/array_allowed_entries_for_the_file_lecture_information.yml +71 -0
  780. data/lib/studium/yaml/available_exam_topics/available_exam_topics.yml +234 -0
  781. data/lib/studium/yaml/backlog_of_exams.yml +37 -0
  782. data/lib/studium/yaml/colours/custom_colours.yml +28 -0
  783. data/lib/studium/yaml/colours/use_colours.yml +1 -0
  784. data/lib/studium/yaml/current_exams.yml +30 -0
  785. data/lib/studium/yaml/curricula/README.md +39 -0
  786. data/lib/studium/yaml/curricula/bachelor/bachelor_agrarwissenschaften_033255.yml +147 -0
  787. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_basisblock_033630.yml +71 -0
  788. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_botanik_033630.yml +100 -0
  789. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_ecology_033630.yml +74 -0
  790. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_mikrobiologie_und_genetik_033630.yml +122 -0
  791. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_molekulare_biologie_033630.yml +106 -0
  792. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_zoologie_033630.yml +87 -0
  793. data/lib/studium/yaml/curricula/bachelor/bachelor_chemie_033662.yml +165 -0
  794. data/lib/studium/yaml/curricula/bachelor/bachelor_dummy_curriculum.yml +182 -0
  795. data/lib/studium/yaml/curricula/bachelor/bachelor_elektrotechnik_und_informationstechnik_033235.yml +13 -0
  796. data/lib/studium/yaml/curricula/bachelor/bachelor_forstwirtschaft_033225.yml +115 -0
  797. data/lib/studium/yaml/curricula/bachelor/bachelor_informatik_033521.yml +136 -0
  798. data/lib/studium/yaml/curricula/bachelor/bachelor_ktww_033231.yml +84 -0
  799. data/lib/studium/yaml/curricula/bachelor/bachelor_lmbt_033217.yml +121 -0
  800. data/lib/studium/yaml/curricula/bachelor/bachelor_medizinische_informatik_033533.yml +283 -0
  801. data/lib/studium/yaml/curricula/bachelor/bachelor_molekularbiologie_033665.yml +95 -0
  802. data/lib/studium/yaml/curricula/bachelor/bachelor_nutrition_science_033638.yml +119 -0
  803. data/lib/studium/yaml/curricula/bachelor/bachelor_pharmazie_033305.yml +170 -0
  804. data/lib/studium/yaml/curricula/bachelor/bachelor_technische_chemie_033290.yml +131 -0
  805. data/lib/studium/yaml/curricula/bachelor/bachelor_technische_informatik_033535.yml +23 -0
  806. data/lib/studium/yaml/curricula/bachelor/bachelor_ubrm_033227.yml +143 -0
  807. data/lib/studium/yaml/curricula/bachelor/bachelor_verfahrenstechnik_033273.yml +167 -0
  808. data/lib/studium/yaml/curricula/bachelor/bachelor_wirtschaftsinformatik_033526.yml +29 -0
  809. data/lib/studium/yaml/curricula/experimental/bachelor_informatik_in_den_lebenswissenschaften.yml +137 -0
  810. data/lib/studium/yaml/curricula/individual/bachelor_formale_logik.yml +88 -0
  811. data/lib/studium/yaml/curricula/individual/bachelor_informatik_und_molekulare_biologie.yml +1161 -0
  812. data/lib/studium/yaml/curricula/individual/bachelor_vector_based_strategies_in_life_sciences_molecular_medicine_and_biotechnology.yml +1157 -0
  813. data/lib/studium/yaml/curricula/individual/master_bioinformatics_and_nanobiotechnology_in_molecular_medicine.yml +306 -0
  814. data/lib/studium/yaml/curricula/individual/master_vector_based_strategies_in_life_sciences_molecular_medicine_and_biotechnology.yml +741 -0
  815. data/lib/studium/yaml/curricula/master/master_bioinformatik_066875.yml +75 -0
  816. data/lib/studium/yaml/curricula/master/master_biologie_molekulare_mikrobiologie_mikrobielle_oekologie_und_immunbiologie_066830.yml +78 -0
  817. data/lib/studium/yaml/curricula/master/master_biologische_chemie_066863.yml +66 -0
  818. data/lib/studium/yaml/curricula/master/master_dummy_curriculum.yml +197 -0
  819. data/lib/studium/yaml/curricula/master/master_genetik_und_entwicklungsbiologie_066877.yml +89 -0
  820. data/lib/studium/yaml/curricula/master/master_lmbt_066418.yml +112 -0
  821. data/lib/studium/yaml/curricula/master/master_molecular_biology_066865.yml +72 -0
  822. data/lib/studium/yaml/curricula/master/master_molekulare_biologie_066834.yml +151 -0
  823. data/lib/studium/yaml/curricula/master/master_pharmazie_066605.yml +176 -0
  824. data/lib/studium/yaml/curricula/master/master_technische_chemie_066490.yml +123 -0
  825. data/lib/studium/yaml/curricula/outdated/master_bioinformatics_and_molecular_biotechnology_including_aspects_from_molecular_medicine.yml +438 -0
  826. data/lib/studium/yaml/curricula/outdated/master_food_science_and_plant_biotechnology.yml +31 -0
  827. data/lib/studium/yaml/curricula.yml +562 -0
  828. data/lib/studium/yaml/daily_questions_solved.yml +1654 -0
  829. data/lib/studium/yaml/default_delay.yml +4 -0
  830. data/lib/studium/yaml/default_encoding.yml +1 -0
  831. data/lib/studium/yaml/directory_to_the_exam_topics.yml +0 -0
  832. data/lib/studium/yaml/editor.yml +1 -0
  833. data/lib/studium/yaml/exams/next_exams_to_do.md +9 -0
  834. data/lib/studium/yaml/file_for_exam_questions.yml +1 -0
  835. data/lib/studium/yaml/german/README.md +2 -0
  836. data/lib/studium/yaml/german/german_to_english_month_names.yml +16 -0
  837. data/lib/studium/yaml/grouped_themes.yml +192 -0
  838. data/lib/studium/yaml/holidays.yml +201 -0
  839. data/lib/studium/yaml/important_exams.yml +266 -0
  840. data/lib/studium/yaml/inscription_dates_of_universities.yml +60 -0
  841. data/lib/studium/yaml/lecture_aliases.yml +138 -0
  842. data/lib/studium/yaml/lecture_information/lecture_information.yml +61740 -0
  843. data/lib/studium/yaml/log_dir.yml +1 -0
  844. data/lib/studium/yaml/main_topic.yml +11 -0
  845. data/lib/studium/yaml/max_stats.yml +249 -0
  846. data/lib/studium/yaml/meta_themes/README.md +13 -0
  847. data/lib/studium/yaml/meta_themes/biochemistry.md +6 -0
  848. data/lib/studium/yaml/meta_themes/bioinformatics.md +6 -0
  849. data/lib/studium/yaml/meta_themes/biotechnology.md +9 -0
  850. data/lib/studium/yaml/meta_themes/cellbiology.md +9 -0
  851. data/lib/studium/yaml/meta_themes/chemistry.md +9 -0
  852. data/lib/studium/yaml/meta_themes/genetics.md +10 -0
  853. data/lib/studium/yaml/meta_themes/immunology.md +5 -0
  854. data/lib/studium/yaml/meta_themes/metabolic_pathways.md +12 -0
  855. data/lib/studium/yaml/meta_themes/molecular_biology.md +9 -0
  856. data/lib/studium/yaml/meta_themes/protein_engineering.md +10 -0
  857. data/lib/studium/yaml/meta_themes/statistics.md +2 -0
  858. data/lib/studium/yaml/mitbelegung/README.md +4 -0
  859. data/lib/studium/yaml/mitbelegung/mitbelegung.yml +21 -0
  860. data/lib/studium/yaml/mitteilungsbl/303/244tter/mitteilungsbl/303/244tter.yml +363 -0
  861. data/lib/studium/yaml/n_total_questions.yml +1 -0
  862. data/lib/studium/yaml/rename_konsole_tab.yml +1 -0
  863. data/lib/studium/yaml/semester_planner/README.md +4 -0
  864. data/lib/studium/yaml/semester_planner/semester_planner.yml +189 -0
  865. data/lib/studium/yaml/show_topic.yml +1 -0
  866. data/lib/studium/yaml/statistics/lecture_information.yml +1 -0
  867. data/lib/studium/yaml/statistics/max_stats.yml +239 -0
  868. data/lib/studium/yaml/statistics/statistics.yml +75 -0
  869. data/lib/studium/yaml/week/01_monday.yml +25 -0
  870. data/lib/studium/yaml/week/02_tuesday.yml +68 -0
  871. data/lib/studium/yaml/week/03_wednesday.yml +63 -0
  872. data/lib/studium/yaml/week/04_thursday.yml +20 -0
  873. data/lib/studium/yaml/week/05_friday.yml +31 -0
  874. data/lib/studium/yaml/week/06_saturday.yml +16 -0
  875. data/lib/studium/yaml/week/07_sunday.yml +0 -0
  876. data/lib/studium/yaml/week/README.md +10 -0
  877. data/lib/studium.rb +5 -0
  878. data/studium.gemspec +82 -0
  879. data/test/testing_studium.rb +244 -0
  880. data/test/testing_studium_base_class.rb +31 -0
  881. data/test/testing_the_file_lecture_information.rb +18 -0
  882. data/test/testing_time_component.rb +29 -0
  883. metadata +1094 -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
+ - <one>How</one> can we <two>visualize</two> <one>lipid rafts</one> in membranes? Via the <one>AFM</one> (<two>atomic force microscope</two>).
13
+ - Was ist <one>das gemeinsame Merkmal aller G-Proteine</one>? Eine <one>hoch konservierte G-Domäne</one>.
14
+ - Das <one>KDEL Signal</one> lässt sich <two>wo finden</two>? Am <one>C-terminalen Ende</one> <two>einer Polypeptidkette</two>.
15
+ - What is <one>the most important group of enzymes in the lysosome</one>? The <one>hydrolases</one>. []
16
+ - 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>
17
+ - <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]
18
+ - <one>Humans</one> <two>have n actin genes in their genome</two>? <one>6</one>.
19
+ - 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
20
+ - <one>Welche Gene</one> <two>verzögern den Zellzyklus</two>? <one>Tumorsuppressor-Gene</one>.
21
+ - <one>Acetyl-Coenyzm A</one> <two>besteht aus</two>? <one>Pyruvat</one> und Coenzym A.
22
+ - Andere Bezeichnung für <one>lösen</one>, in bezug auf die Zellbiologie? <one>Solubilisieren</one>.
23
+ - <one>Welche Mikrotubuli</one> reichen von Zellpol zu Zellpol? Die <one>Polar-Mikrotubuli</one>.
24
+ - 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> []
25
+ - Name <one>three skeletal proteins</one>, starting with the letters A,V,F. A: (1) Actin (2) Vinculin (3) <one>Fibronectin</one>
26
+ - Name <one>a bacterial homolog of actin</one>. A: <one>MreB</one>.
27
+ - 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>.
28
+ - Nenne eine <one>Pumpe</one> in den Membranen der Lysosomen. A: <one>H⁺ ATPase</one>.
29
+ - 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>
30
+ - What is the <one>D</one> and <one>T</one> form of actin filaments? (1) D form ... bound ADP. (2) <one>T form</one> ... <two>bound ATP</two>.
31
+ - 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.
32
+ - <one>Phagosomes</one> have diameters 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>!
33
+ - <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>.
34
+ - <one>Who</one> proposed the structure for the <two>nucleosome</two>? <one>Roger Kornberg</one>.
35
+ - In cellbiology: what is a <one>CKI</one>? This is a <one>cyclin-dependent kinase inhibitor</one>.
36
+ - What does the enzyme <one>guanylate cyclase</one> produce? <one>cGMP</one>, which is <two>cyclic GMP</two>, synthesized from GTP. URL: https://de.wikipedia.org/wiki/Cyclisches_Guanosinmonophosphat
37
+ - What is meant with the term <one>translational frameshifting</one>? When the cell ignores a stop codon.
38
+ - 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>.
39
+ - Nenne drei Vertreter des <one>Endomembransystems</one>. A: (1) Golgi (2) <one>Endoplasmatisches Retikulum</one> (3) <one>Lysosom</one>
40
+ - Within a cell: <one>what happens</one> if a protein loses its KDEL Sequence? This protein can no longer be retained within the ER.
41
+ - Define the term <one>heterotrophy</one>. A: At least two genetically different types of mitochondria (or other organelles) are present in the same cell.
42
+ - <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>.
43
+ - 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>.
44
+ - 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 []
45
+ - 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.
46
+ - 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>.
47
+ - 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 []
48
+ - Der <one>cis-golgi</one> ist <two>wem</two> zugewandt? Dem <one>ER</one>.
49
+ - Name <one>an ER-resident protein</one> start with the letter "P". A: Protein disulfide isomerase (<two>PPI</two>).
50
+ - <one>Welche Aufgabe</one> hat die <two>Alpha-Subunit</two> bei G-Proteinen? Diese Untereinheit ist eine <one>GTPase</one>. Sie hydrolysiert GTP zu GDP; dies inaktiviert das G-Protein.
51
+ - Which <one>energy form</one> does the cell use for actin and tubulin subunits? (1) <one>Actin</one>: <two>ATP</two> (2) <one>Tubulin</one>: <two>GTP</two>
52
+ - <one>ARF-GAP1</one> ist was für ein Proteintyp? Ein <one>GAP</one>: <two>GTPase-activating protein</two>.
53
+ - Nenne <one>eine Substanz, die Mikrotubuli stabilisieren kann</one>. A: <one>Taxol</one>. URL: https://de.wikipedia.org/wiki/Paclitaxel []
54
+ - 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 []
55
+ - What happens when the balance between cell proliferation and elimination goes awry? Cancer may form, aka be initiated.
56
+ - Sind <one>Centrioles</one> wichtig? <one>Ja</one> - Centrioles organisieren die <two>mitotic spindle</two>.
57
+ - Where can <one>Plasmalogens</one> commonly found? They can be found in cell membranes in the nervous systems.
58
+ - 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>
59
+ - <one>Which three general functions</one> may a <two>P body</two> have? (1) "storeage" (2) <one>repression</one> (3) <one>degradation</one>
60
+ - 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.
61
+ - Name <one>two</one> <two>degradation organelles</two>. A: (1) the <one>26S-Proteasome</one> (2) the <one>lysosomes</one> []
62
+ - What means <one>cellular respiration</one>? This is how cells consume O₂ and produce CO₂.
63
+ - <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.
64
+ - 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.
65
+ - <one>Which cell type</one> <two>expresses P-selectin constitutively</two>? The <one>endothelial cells</one>.
66
+ - <one>How</one> does a <two>mRNA</two> with premature stop codons arise in humans, most likely? Due to <one>improper splicing</one>.
67
+ - <one>Warum</one> führt die Zelle <two>Farnesylierungen</two> durch? Um Proteine fest mit der Membran zu assoziieren.
68
+ - In nm: what is the <one>diameter</one> of a typical <two>Nuclear Pore Complex</two>? <one>125 nm diameter</one>.
69
+ - What is the <one>cis-Golgi</one>? The cis-Golgi is the Golgi stack <one>closest to the ER</one>. []
70
+ - An die <one>Kernmembran</one> schließt ... ? Das <one>Endoplasmatische Retikulum</one> (<two>ER</two>).
71
+ - The <one>SRP</one> (<two>signal recognition particle</two>) can bind to ...? (1) The <one>ribosome</one> (2) the <one>signal sequence</one>
72
+ - Give <one>three examples</one> for <two>G-protein-coupled receptors</two>. A: (1) muscarinic receptor (2) adrenergic receptor (3) <one>opioid receptor</one>
73
+ - We can convert <one>heme</one> into which <two>photoreceptor pigment</two>? Into <one>phycocyanobilin</one>.
74
+ - The <one>lysosomal membrane</one> has a single or double phospholipid bilayer? The <one>lysosomal membrane</one> has <two>a single phospholipid layer</two>. []
75
+ - 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>
76
+ - In <one>cell biology</one>: what does the term <two>transfection</two> mean? The process of deliberately introducing nucleic acids into cells.
77
+ - 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 []
78
+ - Nenne <one>zwei Aufgaben der Peroxisomen</one>. A: (1) Oxidativer Abbau von Fettsäuren (2) Entgiftung von toxischen Substanzen
79
+ - 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.
80
+ - <one>Nucleoporins</one> contain in particular which two-aminoacid repeats? <one>FG</one>, aka <two>Phe</two>/<two>Gly repeats</two>. []
81
+ - <one>Periphere Mikrotubuli</one> in den Geisseln sind miteinander wie verbunden? Durch das Motorprotein <one>Dynein</one>.
82
+ - <one>Chromatin</one> besteht grob formuliert, in Prozent, aus? <one>45% Protein</one>, <two>55% DNA</two>. []
83
+ - <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.
84
+ - <one>Wann</one> setzt die Zelle das Enzym <two>Glutamine Synthetase</two> ein? Wenn die NH₃-Konzentration niedrig ist.
85
+ - Nenne <one>vier Phospholipide</one>, die in einer Membran vorgefunden werden können. A: (1) Phosphatidylcholin (PC) (2) Phosphatidylserin (PS) (3) Phosphatidylinositol (PI) (4) Phosphatidylethanolamin (PE)
86
+ - 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.
87
+ - Sind <one>Membranen einer Zelle</one> <two>Polymere</two>? <one>Nein</one> - Membranen sind <two>Aggregate</two>.
88
+ - How do we call <one>the vesicles</one> derived from the <three>ER</three>? <one>Microsomes</one>. []
89
+ - Nenne das wichtigste <one>monomere G-Protein</one>. A: Das <one>Ras-Protein</one>.
90
+ - <one>What</one> does the cyclosome/anaphase promoting complex degrade? It degrades the <one>anaphase inhibitor</one>, via the <two>ubiquitin-degradation pathway</two>.
91
+ - <one>Which protein</one> <two>separates</two> Ran-GTP from importin? The <one>RanBP</one> (<two>Ran Binding Protein</two>).
92
+ - In cell biology: what happens if a late endosome combines with a lysosome? An <one>autolysosome</one> is created.
93
+ - 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
94
+ - An <one>amoeba</one> (a single-celled protozoan) can have <two>a cell diameter of approximately ... </two>? <one>0.5 mm</one>. []
95
+ - <one>Where</one> do we find the <two>SRP-Receptor</two>? In the <one>ER membrane</one>.
96
+ - In general: <one>most cell lines used in cell culture technology were derived from</one>? From <one>tumors</one>. []
97
+ - <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.
98
+ - <one>Eine bakterielle Zelle</one> <two>besitzt wieviele Moleküle ATP</two>? <one>1 Million</one>. []
99
+ - 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.
100
+ - Give <one>two examples</one> for materials cells like to adhere to. A: (1) <one>polylysine</one> (2) <one>extracellular matrix components</one>
101
+ - The <one>MPF</one> (<two>maturation promoting factor</two>) consists of how many subunits? <one>2</one>. []
102
+ - 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>).
103
+ - In cell biology: <one>where</one> may one be able to find a <two>lagging head</two>? Within the cell, in <one>kinesin</one>.
104
+ - Eine <one>typische Eukaryotenzelle</one> hat wieviele Proteasome pro Zelle? <one>30.000</one>.
105
+ - 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>). []
106
+ - <one>Intermediärfilamente</one> können mit anderen Intermediärfilamenten eine Interaktion eingehen. <two>Wie geschieht dies</two>? Über <one>Heptad-Repeats</one>.
107
+ - Was meinen wir mit <one>zellulärer Proteinsortierung</one>? Wenn die Zelle <one>unterscheidet</one> wohin ein Protein geschickt werden soll.
108
+ - 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.
109
+ - Name <one>three general roles</one> of <two>actin filaments</two>. A: (1) cellular contraction (2) <one>cellular migration</one> (3) <one>signalling</one>
110
+ - Allgemein: <one>welche vier chemische Gruppen-Reste</one> können Aminosäuren haben? (1) sauer (2) basisch (3) <one>polar</one> (4) <one>unpolar</one>
111
+ - <one>Welches Protein</one> <two>spaltet Vesikel in einer Zelle ab</two>? <one>Dynamin</one>. URL: https://en.wikipedia.org/wiki/Dynamin []
112
+ - <one>The process</one> by which an aged organelle is degraded in a lysosome is called ... ? <one>Autophagy</one>. []
113
+ - Is <one>membrane synthesis</one>, for a given cell, <two>templated by a parental structure</two>? <one>Yes</one>, always.
114
+ - Die <one>Rab Proteinfamilie</one> haben allgemein <two>wieviele Untereinheiten</two>? <one>Eine</one>.
115
+ - <one>Welches Enzym</one> erzeugt <two>dTMP</two>? <one>Thymidylate Synthetase</one> (ausgehend von dUMP).
116
+ - 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> []
117
+ - What are <one>cathepsins</one> and <two>where are they activated</two>? <one>Cathepsins</one> are <two>proteases</two> which become activated at the low pH found in Lysosomes.
118
+ - The <one>clathrin triskelion</one> is specifically made up of ... ? <one>3 light chains</one> - and <one>3 heavy chains</one>. []
119
+ - <one>Schleiden</one> and <one>Schwann</one> proposed the <two>cell doctrine</two> in which year? In the year <one>1838</one>.
120
+ - Nenne <one>zwei Genprodukte</one> die für die Bildung des Autophagosoms wichtig sind. A: (1) Atg1 Kinase Komplex (2) <one>PI3K</one>
121
+ - Nenne einen Prozess, mit dem man <one>RNA-Aptamere herstellen kann</one>. A: <one>SELEX</one>. URL: https://en.wikipedia.org/wiki/Systematic_evolution_of_ligands_by_exponential_enrichment []
122
+ - <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. []
123
+ - <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>
124
+ - 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".
125
+ - Nenne eine Grenze der Lichtmikroskopie. A: Die <one>Abbe-Grenze</one>. URL: https://de.wikipedia.org/wiki/Aufl%C3%B6sung_(Mikroskopie)#Abbe-Limit
126
+ - Nenne <one>die drei Typen von Membranrezeptoren</one>. A: (1) G-Protein gekoppelte Rezeptoren (2) Rezeptortyrosinkinasen (3) Liganden-gesteuerte Ionenkanäle
127
+ - Der Mensch hat wieviele Zellen? <one>10¹⁴</one>.
128
+ - Name the <one>two classes</one> of <two>microtubule-based motors</two>. A: (1) <one>Dynein</one> (2) <one>Kinesin</one> []
129
+ - In der Zellbiologie: welche Rolle spielen <one>multivesicular bodies</one>? Sie spielen eine Rolle beim Transport von ubiquitinierten Proteinen und Rezeptoren in ein Lysososome.
130
+ - 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>
131
+ - 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>. []
132
+ - What is the <one>primary function</one> for <two>intermediate filaments</two> for a cell? To <one>provide mechanical strength</one>. []
133
+ - <one>Welche Cytoskelett-Elemente</one> sind <two>apolar</two>? Nur die <one>Intermediärfiamente</one>.
134
+ - <one>Centrioles</one> are essential for development of ... ? <two>cilia</two> and <two>flagella</two>.
135
+ - 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>.
136
+ - 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 []
137
+ - <one>Ferroptosis</one> is <two>a type of programmed cell death</two>. In this type, we can see the accumulation of ... ? <one>lipid peroxides</one>. TODO: ADD MISSING URL HERE.
138
+ - <one>Ras proteins in the cytoplasm</one> tend to have what at their carboxy termini? <one>Lipid groups</one>.
139
+ - <one>Where inside of a cell</one> can we find the <two>Cajal bodies</two>? In the <one>nucleus</one>.
140
+ - 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>.
141
+ - <one>Which class of enzymes</one> trigger the events in the cell cycle? <one>Kinases</one>. []
142
+ - 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>.
143
+ - Die gängige Bezeichnung für <one>Mitochondrien</one> ist ... ? <one>Kraftwerke der Zelle</one>. []
144
+ - 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
145
+ - 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.
146
+ - <one>Autophagy</one> is induced <two>upon nutrient depletion</two> - or alternatively, <three>treatment with which particular drug</three>? With <one>Rapamycin</one>. []
147
+ - Give another term for the <one>Protein kinase A</one>. A: <one>cAMP-dependent protein kinase</one>.
148
+ - Name <one>an enzyme</one> that helps in <two>protein folding</two>. A: The <one>protein disulfide isomerase</one>.
149
+ - <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>.
150
+ - Nenne <one>drei Typen</one> an <two>Membranproteinen</two>. A: (1) <one>peripher</one> (2) <one>integral</one> (3) <one>glykolipid-verankert</one>
151
+ - What does <one>phagocytosis</one> literally mean? <one>Cellular eating</one>. URL: https://en.wikipedia.org/wiki/Phagocytosis []
152
+ - 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>) []
153
+ - <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>.
154
+ - Name <one>two</one> <two>ER-resident chaperones</two>. A: (1) <one>Calnexin</one> (2) <one>Calreticulin</one>
155
+ - Does <one>FRAP</one> (<two>fluorescence recovery after photobleaching</two>) <three>make use of GFP proteins</three>? <one>Yes</one>. []
156
+ - What is <one>Transdifferentiation</one>? <one>Transdifferentiation</one> is <two>the conversion of a differentiated cell type into another differentiated cell type</two>.
157
+ - 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.
158
+ - 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>).
159
+ - 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
160
+ - What is the main task of <one>SNARE proteins</one>? <one>SNARE proteins</one> mediate <two>fusion of lipid bilayers</two>.
161
+ - <one>Wo</one> genau spalten die <two>Caspasen</two>? Spezifisch <one>hinter</one> <two>Aspartatresten</two>. []
162
+ - <one>Cargo</one> within the cell can be <two>sent via vesicles</two>, which must be cleave off during the <three>scission</three> step. Which enzymes catalyze this reaction usually? <one>GTPases</one>, such as <two>dynamin</two>.
163
+ - <one>Telomere fusion</one> may, in general, lead to ... ? <one>Chromosomal instability</one>. URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC1993879/ []
164
+ - <one>Cytokines</one> can convey to the cells signals to induce ... which four different cell-specific phenomena, all starting with the word "cell")? (1) <one>cell proliferation</one> (2) <one>cell specialization</one> (3) <one>cell interaction</one> (4) <one>cell movement</one>
165
+ - <one>Wieviele Ribosomen</one> könnte man in eine <two>Mycoplasma-Zelle</two> (im Durchmesser) packen? <one>10</one>.
166
+ - A typical animal cell is <one>n µm in diameter</one>. A: <one>10-20 µm in diameter</one>.
167
+ - Name <one>a domain</one> in an <two>initiator procaspase</two>. A: <one>CARD</one> - the <two>Caspase recruitment domain</two>.
168
+ - 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> []
169
+ - <one>Wo</one> kann das Protein <two>RanGAP1</two> gefunden werden? Auf der <one>Außenseite des Zellkern</one>. []
170
+ - 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. []
171
+ - 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 []
172
+ - <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"
173
+ - <one>Which three components</one> do we require for <two>a human artificial chromosome</two>? (1) <one>centromere</one> (2) <one>telomeres</one> (3) <one>origin of replication</one> []
174
+ - Das <one>clathrin triskelion</one> besteht aus ... ? Es ist ein <one>Hexamer</one>, bestehend aus <two>3x schweren Ketten</two> und <two>3x leichten Ketten</two>. []
175
+ - <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).
176
+ - Es gibt nicht nur <one>GFP</one> sondern auch <two>CFP</two> sowie <two>YFP</two>. Was heisst das? (1) <one>CFP</one> ist <two>cyan fluorescent protein</two>. (2) <one>YFP</one> ist <two>yellow fluorescent protein</two>.
177
+ - 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.
178
+ - Wie nennen wir den <one>G1-Kontrollpunkt</one> in Säugetierzellen? <one>Restriktionspunkt</one> (<two>R-Punkt</two>). []
179
+ - <one>Wo genau</one> kann <two>Sphingomyelin</two> gefunden werden? In der <one>Myelinscheidenmembran der neuronalen Axone</one>.
180
+ - <one>Tubulin subunits</one> (Alpha and Beta) <two>can bind what exactly</two>? <one>GDP</one> or <one>GTP</one>. []
181
+ - How can a <one>lysosome</one> <two>maintain its acidic pH</two>? It contains a H⁺ pump in its membrane, which uses the energy from ATP hydrolysis to pump more H⁺ into the lysosome.
182
+ - <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
183
+ - <one>With which technique</one> could we <two>prove that signal sequences in proteins are important</two>? With a <one>transfection experiment</one>.
184
+ - 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.
185
+ - 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. []
186
+ - 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 []
187
+ - In cell biology: what does the abbreviation <one>Nups</one> stand for? <one>Nucleoporins</one>. URL: https://en.wikipedia.org/wiki/Nucleoporin
188
+ - Nenne die <one>drei Komponenten</one> beim Aufbau eines Lipidmoleküls. A: (1) <one>Cholin</one> (2) Phosphat (3) <one>Glycerin</one>
189
+ - <one>Welche zwei Enzyme</one> konvertieren <two>dUTP</two> zu <three>dTTP</three>? (1) <one>Phosphatase</one> (2) <one>Kinase</one>
190
+ - 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)
191
+ - <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.
192
+ - <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>
193
+ - Eine typische <one>Eukaryotenzelle</one> hat etwa n Nuclear Pore Complexes (NPC), von-bis? Etwa <one>3000-5000 dieser NPCs</one>.
194
+ - Name a way how to experimentally measure DNA replication. A: Make use of <one>[3H] thymidine</one>.
195
+ - 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.
196
+ - For any given eukaryotic cell: <one>when</one> is <two>supercoiling</two> extremely important? When it comes to the <one>replication of DNA</one>. []
197
+ - How comes a cell manages to counteract <one>incorrect stop codons</one>? This is achieved by a process called <one>NMD</one> (<two>nonsense mediated decay</two>). []
198
+ - Name <one>three detergents</one> used in cellbiology. A: (1) <one>SDS</one> (2) <one>Triton X-100</one> (3) Beta-octylglucoside
199
+ - <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>. []
200
+ - The Adaptor protein <one>Epsin</one> in a cell helps which other molecule? <one>Clathrin</one>.
201
+ - <one>Who</one> has a <two>DEAD box motif</two>? <one>RNA Helicases</one>.
202
+ - A single <one>gap junction channel</one> is <two>composed of two ... </two>? <one>Connexons</one>. URL: https://en.wikipedia.org/wiki/Connexon []
203
+ - Nenne einen Hemmer von <one>MDM2</one>. A: Das <one>Arf-Gen Produkt</one>.
204
+ - <one>Welche Aufgabe</one> haben die <two>Cajal-Körper</two>? Sie synthetisieren kleine Kern-RNAs (<one>small nuclear RNAs</one>).
205
+ - <one>Wie</one> entsteht ein <two>Autolysosom</two>? Durch <one>Fusion</one> eines <two>Lysosom</two> mit einem <two>Autophagosom</two>.
206
+ - Name <one>two</one> <two>microtubule organizing centers</two>. A: (1) <one>centrosome</one> (2) <one>centrioles</one>
207
+ - <one>Clathrin</one> besteht aus? 3 leichten und 3 schweren Ketten. URL: https://de.wikipedia.org/wiki/Clathrin []
208
+ - 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 []
209
+ - 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>.
210
+ - Was passiert bei Zugabe von ATP zu <one>Actinmonomeren</one>? 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.
211
+ - <one>Wann</one> wurde das <two>Fluid-Mosaic-Modell</two> vorgeschlagen? <one>1972</one>.
212
+ - <one>Pro Sekunde</one> produziert ein erwachsener Mensch wieviele Erythrocyten? About <one>2.000.000</one>.
213
+ - 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>
214
+ - <one>Chaperone-mediated autophagy</one> (CMA) involves the recognition by ... which complex? The <one>hsc70-containing complex</one>.
215
+ - For its synthesis, <one>Cyclin D</one> <two>requires which specific transcription factor</two>? <one>E2F</one>. []
216
+ - Do <one>plant cells</one> <two>make use of the KDEL sequence</two>? <one>Yes</one>. []
217
+ - Welches <one>radioaktive Isotop</one> kann genutzt werden, um die Teilungsaktivität von proliferierenden Zellen zu beobachten? <one>P³²</one>.
218
+ - 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.
219
+ - Was sind <one>speckles</one>? <one>Protein-Aggregate</one> <two>im Zellkern</two>. URL: https://www.uniprot.org/locations/SL-0186 []
220
+ - <one>Nebulin</one> is an actin-binding protein. It is a very large protein. <two>Up to how many actin monomers can Nebulin bind</two>? It can bind bind up to as many as <one>200 actin monomers</one>.
221
+ - 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>
222
+ - <one>Rab Proteins</one> are anchored on two cysteins in their C-terminus through which group? Through <one>prenyl groups</one>.
223
+ - <one>Wo</one> vor allem könnte ich das Protein <two>Dynein</two> finden? In <one>Flagellen</one> oder <one>Spermatozoa</one>.
224
+ - Can <one>Integrins</one> bind to <two>fibronectin</two>? <one>Yes</one>. []
225
+ - Give an example for <one>gated transport</one> in cell biology. A: The transfer of material through <one>nuclear pore complexes</one>.
226
+ - Are <one>phospholipid membranes</one> permeable to water? <one>No</one>, they are <two>impermeable to water</two>. []
227
+ - What is <one>the RNA component of SRP</one>? The <one>7SL-RNA</one>. URL: https://en.wikipedia.org/wiki/Signal_recognition_particle_RNA
228
+ - What is meant with the expression <one>non-bilayer lipids</one>? These are lipids that can not build a bilayer of lipids.
229
+ - Give another (<i>fancier</i>) term for <one>phagocytosis</one>. A: <one>Cellular cannibalism</one>. []
230
+ - <one>cdc42</one> <two>belongs to which family</two>? The <one>Rho family</one>.
231
+ - Do <one>chloroplast</one> <two>contain ribosomes</two>? <one>Yes</one>. They are smaller than the regular ribosomes though. []
232
+ - Name <one>a big advantage</one> that <two>multicellularity</two> brought. A: Bigger organisms are able to access more nutrients than do unicellular organisms.
233
+ - Nenne <one>drei Beispiele</one> für <two>Nucleoside</two>. A: (1) Cytidin (2) Uridin (3) <one>Guanosin</one>
234
+ - Warum heissen <one>G-Proteine</one> so (das <one>G</one> in ihrem Namen)? Weil sie <one>Guanin-Nukleotide</one> binden. []
235
+ - <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.
236
+ - <one>Incoming transport vesicles</one> move to the Golgi apparatus. Where to first? Towards the <one>cis-face</one> of the Golgi apparatus.
237
+ - Wieso kann <one>Chlorophyll</one> mit Lipiden assoziieren? Weil es eine <one>Alkoholseitenkette</one> besitzt.
238
+ - In <one>LDL endocytosis</one>: what does <one>LDL</one> stand for? <one>Low Density Lipoprotein</one>. []
239
+ - <one>How many nucleosomes</one> does <two>a single, diploid human cell have</two>? It should have about <one>30 million nucleosomes</one>. []
240
+ - <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>.
241
+ - An <one>animal cell</one> <two>contains about n protein molecules</two>? 10¹⁰ protein molecules.
242
+ - <one>Cadherins</one> are linked to the <two>actin cytoskeleton</two> by ...? <one>Catenins</one>.
243
+ - In <one>prokaryotic cells</one> (such as <i>E. coli</i>), what is the most abundant membrane Phospholipid? <one>Phosphatidylethanolamine</one>.
244
+ - The Glucose-Transporter (<one>GLUT</one>) is an example for what kind of transporter? <one>GLUT</one> is a <two>uniporter transporter protein</two>. URL: https://en.wikipedia.org/wiki/Glucose_transporter
245
+ - 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.
246
+ - <one>Welche Person</one> entdeckte das Phänomen <two>splicing</two>? <one>Joan Steitz</one>. URL: https://medicine.yale.edu/lab/steitz/ []
247
+ - <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>. []
248
+ - <one>How many different cell types</one> can we find in the human body? <one>210</one>. []
249
+ - 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
250
+ - <one>How</one> are the proteins that make up the <two>nuclear pore complex</two> called? The <one>nucleoporins</one>. URL: https://en.wikipedia.org/wiki/Nucleoporin []
251
+ - Was findet am <one>glatten ER</one> statt? Dies ist allgemein <one>der Ort der Lipidsynthese</one>. []
252
+ - <one>How</one> was <two>autophagy</two> initially called? <one>Autolysis</one>.
253
+ - <one>Taxol</one> <two>bindet an welche Tubulin-Form</two>? <one>Taxol</one> bindet an <two>Beta-Tubulin</two>, anstelle von GTP. []
254
+ - What are <one>Neocentromeres</one> and <two>how do they originate</two>? <one>Neocentromeres</one> are ectopic centromeres that originate occasionally from noncentromeric regions of chromosomes.
255
+ - <one>Wann</one> gibt <one>Aequorin</one> <three>Licht ab</three>? Bei Zugabe von (geringen Mengen) <one>Ca²+</one>.
256
+ - Was heisst <one>ERES</one> in der Zellbiologie? <one>ER export sites</one>. TODO: ADD MISSING URL HERE.
257
+ - In cell biology: what does the term <one>photobleaching</one> mean? Photobleaching is the photochemical destruction of a fluorophore.
258
+ - Most <one>laminopathies</one> (== <two>diseases of the lamina</two>) are associated with ..., in a cellular context? A mutant version of lamin A.
259
+ - <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>'. []
260
+ - <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.
261
+ - <one>Wann</one> wurde der <two>Golgi-Apparat</two> entdeckt? <one>1898</one>.
262
+ - Do <one>microfilaments</one> have a plus and minus end? <one>Yes</one>. []
263
+ - Durch <one>Anreicherung nicht abbaufähiger Materialien in der Zelle</one> entstehen ...? <one>Residualkörper</one>. []
264
+ - Was ist ein <one>Tendinozyt</one>? Ein <one>Tendinozyt</one> ist eine Fibroblastenart, die im straffen kollagenen parallelfaserigen Bindegewebe von Sehnen vorkommt.
265
+ - <one>Welche Zellen</one> besitzen viel an <two>Albumin-mRNA</two>? <one>Hepatocyten</one>. URL: https://en.wikipedia.org/wiki/Hepatocyte []
266
+ - The <one>Ras protein</one> has a slow intrinsic ... activiy. A: It has a slow intrinsic <one>phosphatase-activity</one>, converting GTP -> GDP.
267
+ - Nenne <one>ein Protein das den Zellzyklus blockieren kann</one>. A: <one>p21</one>. []
268
+ - 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>.
269
+ - Nenne die <one>vier Bewegungsmöglichkeiten von Phospholipiden</one>. A: (1) "flexion" (2) "rotation" (3) "laterale Diffusion" (4) <one>transversale Diffusion</o
270
+ - <one>Which organelle</one> <two>produces Lysosomes</two>? The <one>Golgi Apparatus</one>. URL: https://en.wikipedia.org/wiki/Golgi_apparatus []
271
+ - Wie wird die Hülle einer Muskelfaser genannt? <one>Sarkolemma</one>. URL: https://de.wikipedia.org/wiki/Muskulatur []
272
+ - <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.
273
+ - Hohe Apertur, niedrige Auflösung? Nein! Gute Auflösung. []
274
+ - <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.
275
+ - 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>.
276
+ - 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. []
277
+ - Most <one>animal cells</one> have a <two>covering</two> over the plasma membrane. <three>How is this covering called</three>? <one>Glycocalyx</one>.
278
+ - Wenn wir <one>Nocodazol</one> zu Zellen geben, <two>was passiert dann</two>? <one>Arrest in der Mitose</one>.
279
+ - <one>Welche Reaktion</one> führt die <two>Luciferase</two> genau durch? Nenne Input und Output. A: <one>Luciferin</one> + ATP + O2 -> "Oxyluciferin" + AMP + CO2.
280
+ - Das <one>Porin</one>-Protein <two>in Mitochondrien</two> erlaubt einen Durchtritt von Molekülen bis zu n Dalton durch? <one>600 Dalton</one>.
281
+ - Give an example for a <one>quaternary RNA Structure</one>. A: The <one>ribosome</one>. []
282
+ - 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>)
283
+ - For <one>clathrin-coated buds</one>, which protein assembles at the neck of the bud? <one>Dynamin</one>.
284
+ - <one>Welches Protein</one> ist <two>Bestandteil der Centrosomen</two>? <one>Gamma-Tubulin</one>. URL: https://de.wikipedia.org/wiki/Tubuline#.CE.B3-Tubulin
285
+ - <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.
286
+ - Give another word for a normally shaped <one>red blood cell</one>. A: A <one>discocyte</one>.
287
+ - 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.
288
+ - <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>
289
+ - 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>.
290
+ - Wie kann man die <one>Mitose</one> <two>genetisch ausschalten</two>? Durch <one>Deletion des Centromers</one>. []
291
+ - Name <one>a protein</one> that can <two>severe actin filaments</two>. A: <one>Gelsolin</one>. URL: https://en.wikipedia.org/wiki/Gelsolin
292
+ - Was heisst <one>ERAD</one> in der Zellbiologie? <one>ER-associated degradation</one>. URL: https://en.wikipedia.org/wiki/Endoplasmic-reticulum-associated_protein_degradation []
293
+ - <one>Human CDKs</one> contain <two>a modified ATP-binding site</two> that can be regulated by ... ? It can be regulated by <one>cyclin binding</one>.
294
+ - Nenne ein Beispiel für einen <one>bidirektionalen Rezeptor</one> der Zelle. A: <one>Integrine</one>. []
295
+ - The signal sequence of a protein is related to folding in what way? It may <one>interfere</one> with the folding process.
296
+ - In der Zelle: <one>wie</one> wird <two>dGTP</two> hergestellt? Ausgehend aus der GDP-Ribose, über die Ribonucleotide Reduktase, hin zu dGDP, danach fügt eine Kinase ein P hinzu und es entsteht dGTP.
297
+ - Allgemein formuliert: <one>welche Zellen sind vor allem in der G0 Phase</one>? <one>Ausdifferenzierte Zellen</one>.
298
+ - 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.
299
+ - <one>A human cell</one> has <two>a typical diameter of n micrometres</two>? <one>20 micrometres</one>.
300
+ - In cell biology: what is meant with the abbreviation <one>INM</one>? <one>Inner nuclear membrane</one>.
301
+ - 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.
302
+ - What is the purpose of a <one>caveole</one>? A <one>caveole</one> protects a cell from stretching.
303
+ - Wie kann <one>Autophagie</one> (ein <two>degradation process</two>) induziert werden? Durch <one>Hungern</one> (<one>starvation</one>).
304
+ - <one>Paired strands of RNA</one> are arranged how ...? <one>Antiparallel</one>.
305
+ - 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.
306
+ - 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 []
307
+ - For <one>animal cell culturing</one>, the substrate concentration of aminoacids is often very important, in particular <two>glutamin</two>. Why glutamin? Because <one>glutamine</one> <two>functions as an energy substrate</two>.
308
+ - <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 []
309
+ - Es gibt sogenannte <one>I-cell diseases</one>, <two>Inclusion-cell</two> diseases. Die sind Teil von "lysosomal storage disease families". Welches Enzym ist hier defekt? Die <one>Phosphotransferase</one>, ein Enzym des Golgi-Apparatus.
310
+ - What does a <one>secretory protein</one> truly hate? The <one>cell membrane</one>.
311
+ - <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>.
312
+ - <one>FtsZ</one> ähnelt in Eukarya was? <one>Tubulin</one>. URL: https://de.wikipedia.org/wiki/Zellteilungsprotein_FtsZ []
313
+ - Name <one>an advantage of optical microscopy</one>, in regards to visualizing biological systems. A: <one>Light</one> is relatively <two>nondestructive</two>.
314
+ - 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
315
+ - Was passiert mit <one>Glykoproteinen</one> die <two>phosphorylierte Mannosereste</two> aufweisen? Sie <one>werden in die Lysosomen transportiert</one>.
316
+ - <one>What type of light</one> <two>is used in microbiology</two>? <one>Visible light</one> + <one>UV light</one>. []
317
+ - The <one>focal adhesion kinase</one> (FAK) is <two>constitutively associated with</two> ... which subunit of integrins? With the <one>β-integrin</one>. URL: https://en.wikipedia.org/wiki/PTK2#Regulation []
318
+ - What is the <one>common feature</one> <two>among Golgi</two>? They are adjacent to <one>endoplasmic reticulum (ER) exit sites</one>.
319
+ - Are <one>tetraspanins</one> <two>glycosylated</two>? Some are, at the <one>N-terminus</one>.
320
+ - Nenne <one>zwei zentrale, sekundäre Botenstoffe</one>. A: (1) <one>cAMP</one> (2) <one>cGMP</one>
321
+ - Name <one>a binding protein for beta 1 integrin</one>. A: <one>Talin</one>.
322
+ - Name three <one>biogenesis strategies</one> for making a new organelle (duplication). A: (1) de novo nucleation growth (2) templated assembly/growth (3) growth/fission
323
+ - In seiner chemischen Struktur ähnelt <one>Phycocyanin</one> wem? Einem <one>unfolded chlorophyll molecule</one>.
324
+ - Precursor of a <one>lysosome</one>? The <one>late endosome</one>. URL: https://en.wikipedia.org/wiki/Endosome#Late_endosomes_to_lysosomes []
325
+ - What are <one>professional phagocytes</one>? (1) <one>macrophages</one> (2) <one>neutrophils</one>
326
+ - Die <one>M-Phase</one> im Zellzyklus <two>wird unterteilt in welche Phasen</two>? (1) <one>Karyokinese</one> (2) <one>Zytokinese</one>
327
+ - <one>Wie</one> gelangt <two>Pyruvat</two> in das Mitochondrium? Über einen <one>H⁺</one>-Symporter.
328
+ - <one>Wer</one> etablierte das <two>Flüssig-Mosaik-Modell</two> im Jahre 1972? <one>Singer</one> und <one>Nicolson</one>.
329
+ - <one>COPII-coated vesicles</one> <two>go from→to</two>? From <one>ER→Golgi</one>.
330
+ - 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).
331
+ - Ein Botenmolekül <one>will</one> eine Zelle beeinflussen. <two>Was braucht die Zelle hierfür unbedingt</two>? Einen <one>Rezeptor</one>. []
332
+ - 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.
333
+ - <one>Welche Zellen</one> reparieren Skelettmuskelfasern? <one>Satellitenzellen</one>.
334
+ - Within the cell, the <one>centromeres</one> play a critical and very important role where exactly? In the <one>segregation of chromosomes</one>.
335
+ - <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>
336
+ - <one>Integral membrane proteins</one> can be categorized as <two>type I</two> and type II. What is the difference there? (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.
337
+ - <one>Who</one> <two>can reverse ubiquitination events</two>? The <one>Deubiquitinases</one>. URL: https://en.wikipedia.org/wiki/Deubiquitinating_enzyme []
338
+ - <one>How</one> can we detect <one>apoptotic cells</one>? Via <one>TUNEL Labeling</one>.
339
+ - Der <one>SRPT</one> wirkt auch als ...? <one>GEF</one> - Guanin nucleotide exchange factor.
340
+ - 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>.
341
+ - <one>How</one> can we <two>visualize lateral diffusion of membrane proteins</two>? Via <one>FRAP</one>: <two>Fluorescent Recovery after Photobleaching</two>.
342
+ - Name <one>three photoproteins</one>. A: (1) <one>Aequorin</one> (2) <one>Obelin</one> (3) <one>Phialidin</one>
343
+ - <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.
344
+ - <one>Wo</one> befinden sich <two>tSNARE Proteine</two> allgemein? <one>tSNARE Proteine</one> befinden sich in der <two>Membran der Zielorganelle</two>.
345
+ - Give another name for <one>histone writers</one>. A: <one>Histone modifying enzymes</one>.
346
+ - Do <one>lipids</one> <two>flip-flop</two>? <one>No</one>.
347
+ - <one>Which Cdc</one> <two>activates the APC</two>/<two>C complex</two>? <one>Cdc20</one>.
348
+ - The <one>endoplasmic reticulum</one> is especially important in the synthesis of ... ? <one>lipids</one>. []
349
+ - 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. []
350
+ - <one>Membrane bending</one> by ... domains? <one>BAR domains</one>. They can induce different curvatues.
351
+ - <one>Actin</one> macht <two>n% der Proteinmasse in einer eukaryoten Zelle aus</two>? <one>Bis zu 20%</one> der Proteinmasse.
352
+ - Name three <one>functional classification</one> of <two>cell junctions</two>. A: (1) Occluding junctions (2) <one>Anchoring junctions</one> (3) <one>Communicating junctions</one>
353
+ - Anderes Wort für <one>VCCD</one> (<two>Viable Cumulative Cell Days</two>)? <one>Viability Index</one>.
354
+ - <one>Who</one> invented the wheel? Actually <one>prokaryotes</one>, via their <two>ATPase</two>.
355
+ - 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>
356
+ - <one>Ionenkanäle</one> <two>können kontrolliert werden</two>. Nenne hierzu drei Möglichkeiten. A: (1) <one>spannungskontrolliert</one> (2) ligandenkontrolliert (Transmitter, Ionen, Nukleotide) (3) <one>mechanisch kontrolliert</one>
357
+ - Was geschieht beim <one>Spindel-Checkpoint</one>? Die Zelle <one>überprüft ob alle Chromosomen an Spindeln angehängt sind</one>.
358
+ - Der <one>ABC-Transporter</one> ist membrangebunden und <two>kann ATP binden</two>. Auf welcher Seite der Zellmembran bindet dieser Transporter ATP? Auf der <one>cytosolischen Seite</one>.
359
+ - <one>Who</one> produces <two>lysosomes</two>? The <one>Golgi complex</one>. URL: https://en.wikipedia.org/wiki/Golgi_apparatus
360
+ - 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.
361
+ - <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. []
362
+ - Give a shorter word for <one>cytoskeletal linker proteins</one>. A: <one>Cytolinkers</one>. []
363
+ - <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>.
364
+ - Give another term for <one>chaperones</one>. A: <one>Folding proteins</one>.
365
+ - Name a factor that may counteract <one>VEGF</one> (<two>vascular endothelial growth factor</two>). A: <one>Endostatin</one>.
366
+ - Was ist eine <one>isokonte Begeißelung</one>? Wenn eine Zelle <one>mehrere Geißeln</one> trägt.
367
+ - <one>Welche zwei Formen</one> des <two>Co-Transport</two> gibt es für eine Zelle? (1) <one>Symport</one> (2) <one>Antiport</one>
368
+ - <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.
369
+ - 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>)
370
+ - 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.
371
+ - The <one>ER lumen</one> can store what? It can store <one>calcium</one> (<two>Ca²⁺</two>). []
372
+ - <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.
373
+ - <one>Vinculin</one> kann welch anderes Protein binden? <one>Actin</one>.
374
+ - Diameter of the <one>megakaryocytes</one>? Up to <one>60 micrometer</one>.
375
+ - Nenne <one>drei verschiedene Plastid-Typen</one> in alphabetischer Reihenfolge. A: (1) Chloroplasten (2) <one>Chromoplasten</one> (3) <one>Leukoplasten</one>
376
+ - What is the function of the <one>ECM</one> (<one>extracellular matrix</one>)? The ECM <one>ties cells together</one>, enabling them to <two>form complex tissues</two>. URL: https://en.wikipedia.org/wiki/Extracellular_matrix
377
+ - <one>Folded proteins</one> inside of a cell leave the ER where? At <one>ER exit sites</one>. []
378
+ - 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.
379
+ - Andere Bezeichnung für die <one>Oberfläche einer Zelle</one>? <one>Cytoplasmamembran</one>.
380
+ - Nenne ein Beispiel für <one>einen Regulator der ras-Aktivität</one>. A: <one>NF1</one>.
381
+ - Name a <one>lipid-soluble second messenger</one>. A: <one>Diacylglycerol</one>. URL: https://en.wikipedia.org/wiki/Diglyceride []
382
+ - What is the <one>most fundamental task</one> for a cell? The passing on of its genetic information to the next generation of cells.
383
+ - <one>Welche Zellen</one> sind <two>gegenüber den Effekten einer ionisierenden Strahlen allgemein sehr empfindlich</two>? Zellen die sehr Mitose-aktiv sind.
384
+ - Die <one>Motordomäne von Myrosin</one> <two>kann</two> <three>welche zwei Substanzen binden</three>? (1) <one>ATP</one> (2) <one>Actin</one> []
385
+ - A cell becomes committed by a process called ... ? <one>Determination</one>.
386
+ - In cell biology: how do we call the methodological step necessary for releasing organelles? <one>Homogenization step</one>.
387
+ - A single <one>NPC</one> <two>can transport n macromolecules per second</two>? <one>1000</one>. []
388
+ - <one>Rab-Proteins</one> are <two>what type of proteins</two> exactly? Rab-Proteins are <one>monomeric GTPases</one>.
389
+ - <one>Wo</one> finden wir eine <two>glykosidische Bindung</two> in einem Nukleotid? Zwischen der <one>Base</one> und dem <one>Zucker</one>.
390
+ - Zellulär betrachtet, was heisst <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.
391
+ - Was meinen wir in der Zellbiologie mit dem <one>retrograden Transport</one>? Dies bezeichnet den Transport von der Zellmembran hin zum Zellkern.
392
+ - In microscopy: what are <one>chromophore groups</one>? Groups with conjugated double bonds that give the dye its color.
393
+ - Name <one>two components</one> of the <two>ER lumen</two>. A: (1) ER tubules (2) <one>ER sheets</one>
394
+ - 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>
395
+ - Besitzen <one>Pilze</one> <two>Centriolen</two>? <one>Nein</one>.
396
+ - In cellbiology we can see the <one>CVT pathway</one>. <two>This abbreviation stands for ... </two>? <one>Cytoplasm-to-vacuole targeting pathway</one>. []
397
+ - The <one>Gamma-Tubulin Ring complex</one> is built where exactly? At the <one>minus end of Microtubules</one>.
398
+ - Haben Zellen normalerweise <one>mehr GTP</one> oder <one>mehr GDP</one>? <one>Mehr GTP</one>. []
399
+ - <one>Wie groß</one> (<two>in nm</two>; von-bis) sind die <three>caveolae</three>? <one>50-100 nm</one>.
400
+ - What exactly is a <one>neoplasm</one>? A <one>neoplasm</one> is an accumulation of <two>abnormally dividing cells</two>.
401
+ - <one>What functions</one> do the <two>Synaptotagmins</two> have? They function as calcium sensors in the regulation of neurotransmitter release and hormone secretion.
402
+ - What is the best source for microtubules? <one>Brains</one>.
403
+ - In der Zellbiologie: was heisst <one>Cvt-Pathway</one>? <one>Cytoplasm-to-vacuole targeting</one>. URL: https://en.wikipedia.org/wiki/Cytoplasm-to-vacuole_targeting []
404
+ - Can proteins contain <one>multiple nuclear localization signal</one> (<two>NLS</two>) sequences? <one>Yes</one>. []
405
+ - 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>.
406
+ - <one>In einer eukaryoten Zelle</one>: ist eher das ER näher am Zellkern oder der Golgi Komplex? Das ER ist deutlich näher am Zellkern vorzufinden als der Golgi Komplex. []
407
+ - Zellulär betrachtet: wo kann das Protein <one>Cathepsin D</one> gefunden werden? In <one>Lysosomen</one>. []
408
+ - Anderer Name für <one>importin-beta-like protein</one>? Karyopherin-Beta-family.
409
+ - Give another name for <one>how cells move</one>. A: <one>Cell motility</one>. URL: https://en.wikipedia.org/wiki/Cell_migration []
410
+ - The <one>Sec23 gene</one> is part of a protein complex in a cell. Where can it be found inside of a cell? In the <one>endoplasmic reticulum</one>.
411
+ - <one>Glucose transport</one> in a cell is connected to which gradient? <one>Na⁺ Gradient</one>.
412
+ - Name a component of the <one>signal recognition particle (SRP)</one> complex. A: The "signal recognition particle RNA", which is also known as 7SL RNA.
413
+ - Andere Bezeichnung für <one>Innendruck des Cytoplasmas</one>? <one>Turgor</one>. []
414
+ - <one>Fibroblasts</one> secrete what? <one>Collagen</one>. []
415
+ - Innerhalb der Zelle: <one>wo</one> spielen <two>Actinfilamente</two> eine Rolle? Sie bilden dynamische Netze unterhalb der Zellmembran.
416
+ - <one>Wo</one> innerhalb der Zelle findet man die <two>zelluläre Phosphotransferase</two>? Dies ist <one>ein Enzym des Golgi apparatus</one>.
417
+ - The protein <one>Dysferlin</one> is linked to which cellular function ...? To <one>skeletal muscle repair</one>.
418
+ - How do we call <one>the disc-like compartments of the Golgi apparatus</one>? <one>Golgi cisternae</one>.
419
+ - <one>Karyopherins</one> are, or can be broadly grouped into, ...? (1) <one>importins</one> (2) <one>exportins</one>
420
+ - Name <one>a protein</one> that <two>can dissociate SNARE pairs</two>. A: <one>NSF</one>.
421
+ - 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
422
+ - Was enthält das <one>Peroxisom</one>? Enzyme, die <one>H₂O₂</one> bilden und abbauen kann.
423
+ - Give another name for <one>DNA-protein intermediary</one>. A: <one>RNA</one>. []
424
+ - Ist <one>Myoglobin</one> <two>an intrazellulären Prozessen beteiligt</two>? <one>Ja</one> - und zwar am <two>intrazellulären O₂-Transport</two>.
425
+ - <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>
426
+ - Name <one>an organism</one> <two>in which cilia assemble in the cytoplasm</two>. A: <one>Plasmodium falciparum</one>.
427
+ - If we wish to add a <one>fluorescent dye</one> <two>to Tubulin</two>, which one should we use? <one>Rhodamine</one>.
428
+ - Nenne einen <one>Unterschied</one> zwischen Mitosis und Meiosis. A: Die Produkte der Meiosis sind haploid.
429
+ - When <one>lipids</one> go below the paracrystalline temperature, what do they <two>lose</two>? The ability to <one>rotate</one>.
430
+ - Name one famous <one>cellular Cdk inhibitor</one>. A: <one>p21</one>.
431
+ - What effect may <one>TGF-Beta</one> have on cells? <one>TGF-Beta</one> may <two>force a halt to proliferation</two>.
432
+ - 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>
433
+ - Im Jahre <one>2015</one> waren etwa <two>wieviele</two> <three>kleine G-Proteine</three> bekannt? Etwa <one>100</one>.
434
+ - <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>.
435
+ - Was meinen wir in der angewandten Zellbiologie mit <one>"quantum dots"</one> eigentlich? Hier sind primär <one>fluoreszierende Nanopartikel</one> gemeint.
436
+ - 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>.
437
+ - <one>Where</one> can <two>RanGAP</two> and <two>RanGEF</two> be found, respectively? (1) <one>RanGAP</one>: only in the <two>cytoplasm</two> (2) <one>RanGEF</one>: only in the <two>nucleus</two>
438
+ - Die Synthese <one>cytoplasmatisher Proteine</one> erfolgt ...? An <one>nichtmembran-assoziierten Ribosomen</one>.
439
+ - Was machen <one>GTPasen</one>? <one>GTPasen</one> <two>binden GTP</two> und hydrolysieren dieses dann zu GDP.
440
+ - What happens when <one>lipids</one> go beyond a certain temperature? Also name a consequence of this. A: They turn into a "paracristalline form" - hence, <one>they can no longer rotate freely</one>.
441
+ - <one>Coated pits</one> <two>give rise to which structure</two>? <one>Coated vesicles</one>. []
442
+ - The human body contains about n cells? <one>10¹⁴ cells</one>.
443
+ - In the cell: <one>tethering proteins of the membrane</one> do <two>recognize which proteins</two>? They recognize <one>Rab proteins</one>.
444
+ - How are <one>lysosomal hydrolases</one> <two>tagged</two> in the Golgi apparatus? Via <one>mannose-6-phosphate</one> groups.
445
+ - The <one>LDL-LDLR endocytosis pathway</one> begins with sequestering the LDL-LDLR complex on the cell surface into ... ? <one>clathrin-coated pits</one>.
446
+ - Was ist <one>Transmission</one> in der Mikroskopie? Transmission bezeichnet <one>das Durchdringen eines Objektes mit Licht</one>.
447
+ - Wie können wir die <one>Phosphodiesterase</one> hemmen? Durch <one>Koffein</one>. URL: https://de.wikipedia.org/wiki/Coffein#Wirkungsmechanismus []
448
+ - Andere Bezeichnung für <one>Glykoprotein der Zelloberfläche</one>? <one>Aggregationsfaktoren</one>.
449
+ - <one>Who</one> are the most complex <two>glycolipids</two>? The <one>gangliosides</one>.
450
+ - Name <one>a small molecule inhibitor of Dynamin</one> that also begins with the letter <two>D</two>. A: <one>Dynasore</one>.
451
+ - <one>Wie</one> bezeichnen wir die Diffusion durch eine Membran? <one>Passiver Transport</one>.
452
+ - 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
453
+ - Eine <one>aktive Muskelzelle</one> <two>regeneriert pro Sekunde wieviel ATP Moleküle</two>? <one>10 Millionen</one>.
454
+ - What is the <one>end stage</one> of an <two>autolysosome</two>? A <one>residual body</one>.
455
+ - <one>Eps15</one> in der Zelle ist ein <two>multifunctional adaptor protein</two>. Welche Aufgabe hat dies? Reguliert <one>intracellular trafficking</one>.
456
+ - <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>. Arp steht für "Actin-Related Protein" - ARP ähnelt Aktin strukturell.
457
+ - What is the <one>glycosome</one>? The <one>glycosome</one> is a membrane-enclosed organelle that <two>contains glycolytic enzymes</two>.
458
+ - Die Funktion der Energiespeicherung in einer eukaryoten Zelle übernimmt ... ? <one>ATP</one>. []
459
+ - <one>Adrenalin</one> bindet an eine Leberzelle. Effekt innerhalb dieser Zelle? Die <one>Glykogenphosphorylase wird aktiviert</one>.
460
+ - 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>.
461
+ - <one>Wo</one> kann <two>Rab-GTP</two> gefunden werden? An einem <one>Vesikel</one>.
462
+ - <one>Which genes</one> are required for the <two>autophagic pathway</two>? <one>Atg-genes</one>.
463
+ - Der Begriff <one>Autophagy</one> in der Cellbiologie wurde von <two>Christian de Duve</two> geprägt. <three>In welchem Jahr</three>? <one>1963</one>.
464
+ - What is the <one>time hormone</one>? <one>Melatonin</one>. URL: https://en.wikipedia.org/wiki/Melatonin
465
+ - <one>Wo</one> innerhalb einer Zelle kann <two>Phosphoanhydride</two> gefunden werden? In <one>ATP-Molekülen</one>.
466
+ - 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.
467
+ - <one>Rab6 proteins</one> fulfil which cellular role? They direct a vesicle to specific spots on the correct target membrane.
468
+ - <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 []
469
+ - How do <one>wee-mutants</one> look in general? Wee-mutants are <one>very small</one>. []
470
+ - Anteil von <one>Calmodulin</one> <two>in %</two> an der Proteinmasse in einer typischen eukaryoten Zelle? <one>1%</one>. []
471
+ - <one>Wo</one> finden wir den <two>Intermembranraum</two> eines Mitochondriums? Zwischen der äusseren und der inneren Membran.
472
+ - 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".
473
+ - <one>Detergents</one> <two>are soluble in which specific medium</two>? In <one>water</one>.
474
+ - Name the <one>3 Ras Proteins in Humans</one>. A: (1) <one>H</one>-Ras (2) <one>K</one>-Ras (3) <one>N</one>-Ras []
475
+ - The <one>conserved building blocks of all cellular membranes are ... </one>? The <one>phospholipids</one>. []
476
+ - 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>
477
+ - The Protein <one>synaptotagmin</one> binds what? <one>Calcium</one>, und zwar die <two>C2-Domäne</two>. URL: https://en.wikipedia.org/wiki/Synaptotagmin
478
+ - What is <one>negative staining</one>? The background but not the cell is stained. Unstained cells appear as bright objects against a dark background.
479
+ - <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 []
480
+ - Wie wirkt das Gift <one>Phalloidin</one>? <one>Phalloidin</one> stabilisiert Aktinfilamente, die dadurch ihre Dynamik verlieren.
481
+ - <one>Who</one> and <two>when</two> published the molecular structure of the first nucleotide? <one>Furbery</one>, <two>1951</two>.
482
+ - What does the name <one>Ras</one> - an abbreviation - stand for? <one>Ras</one> is an abbreviation of <two>Rat sarcoma</two>. []
483
+ - In cellbiology: <one>Shibire</one> is a <two>temperature sensitive phenotype</two> in Drosophila. What happens at high temperature, and why? The flies become paralysed at high temperature. 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.
484
+ - 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>.
485
+ - Which <one>tubulin-subunits</one> are known? (1) <one>Alpha-Tubulin</one> (2) <one>Beta-Tubulins</one> (3) <one>Gamma-Tubulins</one> []
486
+ - In der Zellbiologie: was ist <one>3D5</one>? Eine <one>tetracycline inducible transfectant cell line</one>.
487
+ - 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>
488
+ - 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 []
489
+ - <one>Export</one> and <one>import receptors</one> are structurally related. <two>They belong to which family</two>? To the family of <one>karyopherins</one>. URL: https://en.wikipedia.org/wiki/Karyopherin []
490
+ - 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)
491
+ - Give another name for a <one>nucleotid</one>. A: <one>Nucleoside-5'-Phosphate</one>.
492
+ - Another term for <one>the translocon</one>? <one>Protein-conducting channel</one>.
493
+ - <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>.
494
+ - Give another name for the <one>Tay-sachs disease</one>? <one>GM2 gangliosidosis</one>.
495
+ - <one>Welchen Durchmesser</one> haben <two>Ribosomen</two> (von-bis)? Etwa <one>20nm - 25nm</one>. URL: https://de.wikipedia.org/wiki/Ribosom#Aufbau_und_Arten []
496
+ - <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>.
497
+ - <one>Was</one> kann man mit <two>Inhibitors</two> und <two>Uncouplers</two> demonstrieren? Den <one>Elektronenfluss</one> durch Zellkomplexe wie ATPase.
498
+ - <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.
499
+ - <one>Wer</one> stellte die <two>Zelltheorie</two> auf? <one>Matthias Schleiden</one> und <one>Theodor Schwann</one>.
500
+ - Was wird im <one>smooth endoplasmic reticulum</one> gebildet? <one>Lipide</one> werden hier gebildet. URL: https://en.wikipedia.org/wiki/Endoplasmic_reticulum#Smooth_endoplasmic_reticulum []
501
+ - <one>In welche Kategorie</one> fallen <two>I-Cell diseases</two>? <one>Lysosomal storage diseases</one>.
502
+ - <one>Wann</one> genau bildet sich der synaptonemale Komplex? Im <one>Zygotän</one>.
503
+ - In cellbiology: what is <one>Shibire</one>? This is a <one>temperature sensitive phenotype</one> <two>in Drosophila</two>.
504
+ - Who or what can produce <one>transit amplifying cells</one>? <one>Stem cells</one> can.
505
+ - Nenne ein Enzym, das beim lysosomalen Proteinabbau Verwendung findet. A: <one>Cathepsin</one>. URL: https://de.wikipedia.org/wiki/Cathepsine []
506
+ - <one>Cell membranes</one> prevent passage of which type of molecules, aside from the size of that molecule? <one>Polar molecules</one>.
507
+ - <one>Ran-GTP</one> can bind to ... ? <one>Importin</one>.
508
+ - What defines the <one>character of a cellular compartment</one>? The <one>composition of the enclosing membrane</one>.
509
+ - 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>
510
+ - Why do we make use of the <one>Yeast-one-hybrid system</one>? To study <one>protein-DNA interactions</one>.
511
+ - Was ist das <one>major cargo protein</one> im zellulären <two>Cvt Pathway</two>? <one>Aminopeptidase I</one> (Ape1).
512
+ - Betreffend die <one>stoffliche Zusammensetzung einer Säugetierzelle</one> - <two>wieviel % Wasseranteil</two> hat eine solche Zelle in etwa? <one>70%</one>. []
513
+ - Nenne <one>zwei verschiedene Hemmstoffe</one> der <two>cAMP-Phosphodiesterase</two>. A: (1) <one>Coffein</one> (2) <one>Theophyllin</one> []
514
+ - <one>The basis for asexual reproduction</one> <two>is given by ... </two>? <one>Mitosis</one>.
515
+ - Can <one>Integrins</one> bind to a variety of different ligands? Yes.
516
+ - How can we observe <one>lipid rafts</one> in a cell membrane? We can use the <one>AFM</one> (atomic force microscope).
517
+ - Name one important but unusual environmental cue for a cell in a multicellular organism. A: <one>Signals</one> <two>from the other cells</two>.
518
+ - In cell biology: what does <one>Nups</one> stand for? <one>Nucleoporins</one>.
519
+ - <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>.
520
+ - 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.
521
+ - Name four different family of cellular adhesion proteins. A: (1) Ig-CAMs (2) cadherins (3) integrins (4) selectins
522
+ - <one>Zellmembranen</one> wirken als ...? <one>Osmotische Schranken</one>.
523
+ - <one>Who</one> initiates the <two>metaphase-to-anaphase</two> transition? The <one>APC</one>/<one>C complex</one>.
524
+ - 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.
525
+ - <one>Welche Funktion</one> haben Intermediärfilamente? Nenne Beispiele für Intermediärfilamente. 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.
526
+ - Give an example for a <one>single-pass transmembrane protein</one>. A: The <one>LDL-Receptor</one>.
527
+ - The alkaloid <one>colchicine</one> was <two>first described as a mitotic poison in what year</two>? In the year <one>1934</one>.
528
+ - Im rauhen <one>cytoplasmatischen Retikulum</one>: <two>wo findet man die Ribosomen</two>? Auf der <one>Cytosol-Seite</one>.
529
+ - 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".
530
+ - <one>Phospholipide</one> können in der Membran bewegt werden. Nenne die 4 grundlegenden <two>Bewegungsarten</two>. A: (1) laterale diffusion (2) Flexion (3) <one>Rotation</one> (4) <one>transversale Diffusion</one>
531
+ - 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.
532
+ - <one>Which two classes</one> of <two>apoptotic caspases</two> exist? (1) initiator caspases (2) <one>executioner caspases</one>
533
+ - 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
534
+ - What is the main signal for protein delivery into lysosomes via endosomes? The <one>Mannose 6-Phosphate Receptor (MPR)</one>.
535
+ - Which <one>cellular phenomenon</one> was first discovered in <two>C. elegans</two>? <one>Apoptosis</one>. URL: https://en.wikipedia.org/wiki/Apoptosis []
536
+ - Give <one>two hormone-examples</one> for vesicular proteins. A: (1) insulin (2) erythropoietin (EPO)
537
+ - Name <one>two different forms</one> of <two>cell senescence</two>. A: (1) <one>replicative senescence</one> (2) <one>induced senescence</one>
538
+ - <one>Welches Protein</one> <two>dissoziiert vSNARE</two>/<two>tSNARE Komplex</two>? <one>NSF</one> (unter ATP Verbrauch).
539
+ - 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>.
540
+ - Name <one>three functions of autophagy</one>. A: (1) starvation (recycling of nutrients) (2) protein aggregation (neurodegenerative importance) (3) damaged organelles
541
+ - The <one>RING finger domain</one> is typically involved in ... ? <one>Ubiquitination</one>.
542
+ - Was ist <one>Endocytose</one>? Die Aufnahme von Flüssigkeit sowie großen und kleineren Molekülen in eine eukaryotische Zelle (nicht bei Prokaryoten)
543
+ - 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>
544
+ - The <one>plasma membrane</one> <two>contains how many layers of phospholipids</two>? <one>Two</one>. []
545
+ - Warum ist <one>Rapamycin</one> (<two>RAPA</two>) in der Zellbiologie wichtig? Weil Rapamycin als <two>Immunosuppressivum</two> wirken kann, und auch die Entwicklung von Krebs behindert.
546
+ - <one>Wie</one> sind die Mikrotubuli in einer nicht-polarisierten Zelle verteilt? Die Plus-Enden befinden sich nahe an der Zellmembran, die Minus-Enden eher in der Mitte der Zelle.
547
+ - <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>. []
548
+ - 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.
549
+ - Welche <one>drei Autophagen-Mechanismen</one> existieren? (1) <one>crinophagy</one> (2) <one>macroautophagy</one> (3) <one>microautophagy</one>
550
+ - Ein <one>schnelles</one> Protein benötigt für die Durchquerung des Zellkerns wie lange? <one>Wenige Minuten</one>. []
551
+ - <one>Cell division</one> creates ... ? <one>New cells</one>. []
552
+ - What is <one>the most important parameter</one> <two>in animal cell culture</two>? The <one>concentration of cells</one>.
553
+ - The <one>human mtDNA</one> codes for <two>n transfer RNAs</two>? <one>22</one>. URL: https://pubmed.ncbi.nlm.nih.gov/15983868/ []
554
+ - <one>Which stain</one> was originally used to identify the Golgi-apparatus? A <one>silver stain</one>. URL: https://en.wikipedia.org/wiki/Golgi%27s_method []
555
+ - 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>
556
+ - An <one>autophagic vesicle</one> can fuse with ...? A <one>lysosome</one>. []
557
+ - In der <one>Autophagie</one> bei der Zellbiologie: was heisst <two>PAS</two>? <two>Phagosome assembly site</two>.
558
+ - <one>FSH</one> in humans means what? <one>Follicle-stimulating hormones</one>.
559
+ - 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>.
560
+ - <one>Where</one> are <two>cell membranes</two> synthesized? Membranes and their constituent proteins are assembled <one>in the ER</one>. []
561
+ - Why do <one>caspases</one> not instantly kill a cell? Because <one>caspases</one> are synthesized as <two>inactive precursors</two>. []
562
+ - Within a cell, <one>ArfGAP1</one> contains motifs which specifically bind to ...? <one>Small liposomes</one>.
563
+ - Warum sieht das <one>rauhe Endoplasmatische Reticulum</one> so aus wie es aussieht? Da <one>mehrere Ribosomen</one> dort zu sehen sind. []
564
+ - In cellbiology: name a classic model of <one>motor functions</one>. A: <one>Skin pigmentation in fish</one>.
565
+ - <one>Average lifetime for a mitochondrium</one> in a liver cell? About <one>10 days</one>. []
566
+ - Andere Bezeichnung für <one>transversale Bewegung</one> eines Proteins in einer Zellmembran? <one>Flip-flop</one>. []
567
+ - Name two <one>microtubule motors</one>. A: (1) <one>Kinesin</one> (2) <one>Dynein</one> []
568
+ - <one>How</one> does a cell cope with a <two>residual body</two>? (1) it can release the content of residual body by exocytosis (2) it can be retained within the cytoplasm, and become a "lipofuscin granule".
569
+ - In der Zellbiologie: was ist <one>Vimentin</one>? <one>Vimentin</one> ist ein Typ 3 Intermediärfilament das eine wichtige Rolle bei der Verankerung von Organellen im Cytosol spielt.
570
+ - <one>When</one> was the <two>first human neocentromere</two> discovered? In the year <one>1993</one>.
571
+ - 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. []
572
+ - <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>.
573
+ - 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>.
574
+ - <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>.
575
+ - What is the <one>Interphase</one>? All but Mitosis; so we have G1, S and G2.
576
+ - 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.
577
+ - 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/ []
578
+ - In der Zelle: <one>welche Aufgabe</one> hat <two>Stathmin</two>? Stathmin reguliert <one>microtubule dynamics</one>.
579
+ - 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 []
580
+ - What is <one>crinophagy</one>? The direct fusion of lysosomes with secretory vesicles.
581
+ - Andere Bezeichnung für <one>three-layered</one>? <one>Trilaminar</one>. URL: https://en.wiktionary.org/wiki/trilaminar []
582
+ - Das <one>Zellweger-Syndrom</one> beruht auf ...? Mutationen in den Genen, die für die Entstehung von Peroxisomen erforderlich sind.
583
+ - Bei den Eukarya: wie wirkt <one>cAMP</one>? Indirekt, über die <one>Proteinkinase A</one>.
584
+ - <one>With which assay</one> can we determine if a nuclear protein shuttles in or out of the nucleus? With help from a <one>Heterokaryon assay</one>.
585
+ - Anteil, in Prozent, von <one>Actin</one> an den Gesamtproteinen in einer eukaryotischen Zelle (<two>von-bis</two>)? Etwa <one>10-20%</one>.
586
+ - Name <one>a drug</one> that can be used to <two>inhibit the function of lysosomes</two>. A: <one>Chloroquin</one>.
587
+ - Andere Bezeichnung für <one>Aktin</one>? <one>Mikrofilamente</one>. Sie haben ja nur einen Durchmesser von etwa 6nm.
588
+ - What does the abbreviation <one>Gamma-TuRC</one> stand for? <one>Gamma-tubulin ring complex</one>.
589
+ - 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.
590
+ - Do <one>phospholipids</one> <two>spontaneously form bilayers</two>? Yes, under the appropriate conditions they will. []
591
+ - Nenne etwas bemerkenswertes bei <one>Mikrotubuli</one> und Genexpression? Mikrotubuli bestehen aus zwei Untereinheiten. Diese Untereinheiten werden gekoppelt exprimiert.
592
+ - Give another name for the <one>cyclin-dependent kinase inhibitor 1</one>. A: <one>p21</one>.
593
+ - Nenne zwei (allgemeine) Bedingungen die eine Zelle erfüllen muss um in die Mitose eintreten zu können. A: (1) es dürfen <one>keine DNA-Schäden</one> vorhanden sein (2) die Zellen müssen eine "ausreichende Größe" erreicht haben
594
+ - What is a <one>Rab cascade</one> in cell biology? This is the ordered recruitment of sequentially active Rab proteins.
595
+ - What exactly is the backbone in <one>phosphoglycerides</one>? The 3-carbon <one>glycerol</one> is the backbone.
596
+ - Das <one>wichtigste transmembranale Protein in Mitochondrien</one> ist ... ? <one>Porin</one>. []
597
+ - <one>DnaA-Protein</one> can be <two>activated by which molecule</two>? <one>ATP</one>. []
598
+ - The <one>cytosylic pH</one> is at ...? At about a value of <one>7.2</one>. []
599
+ - <one>Which chaperone</one> is important for <two>posttranslation translocation</two>? <one>BiP</one>.
600
+ - <one>Water molecules</one> passage into a cell via ... ? This can occur via <one>aquaporines</one>. []
601
+ - 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
602
+ - Was bedeutet <one>Eutelie</one>? <one>Zellkonstanz</one>. []
603
+ - Nenne <one>sechs Organellen</one>. A: (1) <one>Zellkern</one> (2) Mitochondrien (3) Chloroplast (4) Lysosom (5) Peroxisom (6) endoplasmatische Retikulum (7) Golgi-Apparat (bei manchen Definitionen)
604
+ - 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.
605
+ - Wie können wir den Zerfall der Mikrotubuli bewirken? Durch Einsatz von <one>Colchicin</one>. []
606
+ - Give another name for the <one>cyclins</one>. A: <one>Cdk regulators</one>.
607
+ - 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
608
+ - 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.
609
+ - Wie gross kann eine <one>aerobe Zelle</one> werden? So gross das sie gerade noch Sauerstoff aufnehmen und verteilen kann.
610
+ - 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>.
611
+ - 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
612
+ - 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>
613
+ - Wie nennt man <one>die Verschmelzung verschiedenartiger Genome in einer Zelle</one>? <one>Intertaxonische Kombination</one>. (Solche Organismen sind aus genetischer Sicht Chimären).
614
+ - Was heisst <one>GPI-anchor</one>? <one>Glycophosphatidylinositol anchor</one>. URL: https://en.wikipedia.org/wiki/Glycosylphosphatidylinositol
615
+ - What is <one>autophagy</one>? Degradation of intracellular substrates.
616
+ - What is the <one>brain</one> of the cell? The <one>nucleus</one>. []
617
+ - <one>Welches Protein</one> kann <two>die cytosolische Menge an cytochrom c</two> <three>messen</three>? <one>Apaf-1</one>.
618
+ - Nenne <one>zwei Beispiele</one> für <two>amphiphile Moleküle</two>. A: (1) <one>Phospholipide</one> (2) <one>Lecithine</one>
619
+ - Andere Bezeichnung für <one>Mikrofilamente</one>? <one>Actinfilamente</one>.
620
+ - Für den <one>Zellkern-Export bestimmte Proteine</one> haben oft was? <one>Leucin-reiche Sequenzen</one>. []
621
+ - <one>Proteins</one> have different half-lives. What determines the half-life of a protein? The <one>amino acids present at the N-terminus</one>. []
622
+ - Can <one>Integrins</one> bind <two>laminins</two>? <one>Yes</one>. []
623
+ - <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.
624
+ - <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)
625
+ - 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.
626
+ - Name <one>two categories</one> of <two>endocytosis</two>. A: (1) bulk-phase endocytosis (2) receptor-mediated endocytosis
627
+ - <one>Theodor Engelmann</one> <two>used which organism</two> in his photosynthesis experiment? <one>Cladophora engelmann</one>.
628
+ - <one>When</one> exactly is the <two>sister-chromatid cohesin</two> destroyed? At the start of the <one>Anaphase</one>.
629
+ - Wie <one>nennen</one> wir die charakteristische <two>innere</two> Anordnung der Geißeln der Eukaryoten? <one>9x2+2</one>.
630
+ - What is a <one>chromocyte</one>? Any cell that contains a pigment. URL: https://en.wiktionary.org/wiki/chromocyte
631
+ - 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>.
632
+ - The activity of the <one>protein kinase A</one> depends on ... ? The <one>cellular levels of cyclic AMP</one> (<two>cAMP</two>).
633
+ - <one>Wie</one> wird der Export eines Proteins aus dem Nucleus gesteuert? Über <one>NES</one>: <two>Nuclear Export Signal</two>.
634
+ - What is <one>the job</one> of the <two>lipoprotein particles</two>? Carry lipids via the bloodstream to other parts of the body.
635
+ - Name an <one>actin motor</one>. A: <one>Myosin</one>. URL: https://en.wikipedia.org/wiki/Myosin []
636
+ - Name the <one>three major coat proteins</one> in a cell. A: (1) clathrin-coated (2) COPI-coated (3) <one>COPII-coated</one>
637
+ - <one>Desmosomes</one> are <two>anchorage sites</two> for ...? <one>Intermediate filaments</one>.
638
+ - In the cell cycle: what means <one>MUGs</one>? <one>Mitosis</one> with <two>unreplicated genomes</two>.
639
+ - Name <one>an adaptor protein</one> for <two>Ras-Proteins</two>. A: <one>Grb2</one>.
640
+ - Wenn ein Aktinfilament <one>gecapped</one> wird, was bedeutet das für das Wachstum? Das Wachstum dieses Aktinfilaments kommt zum Erliegen.
641
+ - Name <one>four structural components</one> of a mitochondrium. A: (1) Outer Membrane (2) <one>Matrix</one> (3) Inner Membrane (4) Intermembrane space
642
+ - Was kann das Protein <one>BAX</one> bewirken? Die <one>Apoptose einer Zelle</one>. URL: https://de.wikipedia.org/wiki/Bax_(Protein) []
643
+ - In cell biology: <one>ARF-GAP1</one> senses what? <one>Membrane curvature</one>. URL: https://en.wikipedia.org/wiki/ARFGAP1 []
644
+ - <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>).
645
+ - Warum der Name <one>P-Selectine</one>? <one>Platelets</one> (<two>Plättchen</two>).
646
+ - In <one>Tunel Labeling</one>: <two>which antibodies are used</two>? <one>Br(d)U specific antibodies</one>.
647
+ - <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>. []
648
+ - Die <one>Bax-Proteine</one> werden durch welches Protein freigesetzt? <one>p53</one>.
649
+ - <one>Muskelfasern</one> zeigen im Elektronenmikroskop eine <two>charakteristische Querstreifung</two>, die wodurch verursacht wird? Diese Querstreifung wird durch die <one>Sarkomere</one> verursacht.
650
+ - <one>cGMP</one> <two>can bind to which protein kinase</two>? To the <one>protein kinase G</one>.
651
+ - <one>Wieviel % der Proteine</one> einer <two>Leberzelle</two> werden <three>pro Stunde über Autophagy degradiert</three>? <one>1%</one>. []
652
+ - <one>Menschliche Zellkerne</one> besitzen im Durchschnitt <two>n Kernporen</two> / Zellkern? <one>3000</one>. []
653
+ - Do <one>plants</one> use <two>cAMP for signalling</two>? <one>No</one>. []
654
+ - Which <one>categories of SNAREs</one> exist? (1) <one>vesicle</one> or <one>v-SNAREs</one>: these are incorporated into the membranes of transport vesicles during budding (2) <one>target</one> or <one>t-SNAREs</one>: these are located in the membranes of target compartments
655
+ - <one>Wie lange</one> dauert die S-Phase in einer Säugetierzelle (von-bis)? <one>10-12 Stunden</one>.
656
+ - <one>Importins</one> <two>belong to which family</two>? <one>Karyopherins</one>. URL: https://en.wikipedia.org/wiki/Karyopherin []
657
+ - In <one>induction of autophagy</one>: <two>who normally inhibits Atg1</two>? The <one>TOR kinase</one>.
658
+ - Give another expression for the phenomenon of two, or more, organelles coming into close apposition. A: <one>Inter-organellar membrane contacts</one>.
659
+ - Nenne ein Zellorganell das <one>Cardiolipin</one> enthält. A: Das Mitochondrium und zwar die innere Membran des Mitochondriums.
660
+ - Finden wir <one>in Skelettmuskelzellen</one> <two>mehr ATP</two> oder <two>mehr Kreatinphosphat</two>? Mehr <one>Kreatinphosphat</one>. []
661
+ - Give another name for <one>intracellular containers</one>? <one>Transport vesicles</one>.
662
+ - Can the <one>nuclear lamins</one> be <two>phosphorylated</two>? Most likely, because they can definitely be <one>dephosphorylated</one>.
663
+ - Wie schnell sind <one>G-Proteine</one>, allgemein? Etwa 3 Umwandlungen / <one>Minute</one>.
664
+ - <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.
665
+ - The <one>Triskelion</one> is <two>made up of which subunits called ... </two>? <one>Clathrin</one>.
666
+ - Nenne die <one>drei Hauptgruppen von Membranlipiden</one>. A: (1) Glykolipide (2) Phospholipide (3) <one>Cholesterin</one>
667
+ - Wie können wir <one>beweisen</one> das sich Membranproteine lateral in der Membran bewegen können? Indem wir humane und Maus-Zellen fusionieren. Es kommt dadurch zum Durchmischen artspezifischer Proteine.
668
+ - Why is the <one>histone fold</one> so important? So that the <one>histone octamer</one> can form.
669
+ - Vorläufer der <one>Ceramide</one>? <one>Sphingosine</one>.
670
+ - <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 []
671
+ - 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.
672
+ - Wieso benötigt eine Zelle <one>Ribose-5-phosphat</one>? Zur <one>Synthese</one> von <two>RNA</two> und <two>DNA</two>.
673
+ - Wie heißt das <one>endoplasmatische Retikulum</one> auf Englisch? <one>Endoplasmic reticulum</one>. URL: https://en.wikipedia.org/wiki/Endoplasmic_reticulum []
674
+ - Give another, more interesting expression for the <one>addition of a ubiquitin tail</one>. A: The <one>kiss-of-death</one>. []
675
+ - How is the inner part of a <one>plasmodesma</one> called? <one>Desmotubule</one>.
676
+ - 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.
677
+ - Nenne <one>eine sterolähnliche Verbindung in der Zellmembran</one> von <i>Pseudomonas syringae</i>. A: <one>Hopanoide</one>.
678
+ - 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>. []
679
+ - 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>. []
680
+ - 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.
681
+ - <one>Wann</one> wurde die <two>RNA-World Hypothesis</two> vorgestellt? Im Jahre <one>1986</one>.
682
+ - 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>
683
+ - Der <one>retrograde transport</one> bei <two>COP I</two> verläuft von ... zu ...? Von Golgi, zum ER. []
684
+ - Nenne <one>drei allgemeine Funktionen der Mikrotubuli</one>. A: (1) Formerhalt der Zelle (2) Geißeln (3) Bewegung der Chromosomen bei der Mitose
685
+ - What is <one>the total mass</one> of the <two>ATP synthase</two>, <three>in Daltons</three>? <one>600.000 Daltons</one>.
686
+ - Can <one>gap junctions</one> be found in <three>erythrocytes</three>? No. URL: https://en.wikipedia.org/wiki/Gap_junction []
687
+ - What happens if the <one>NLS</one> <two>is mutated</two>? This will lead to <one>cytosolic localization of the given package</one>.
688
+ - 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>
689
+ - Aus welchen <one>Domänen</one> besteht ein <two>Motorprotein</two>? Aus einer <one>Kopfdomäne</one> sowie einer <one>Schwanzdomäne</one>.
690
+ - 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>
691
+ - <one>When</one> is a <two>Rab Protein</two> active? When it has bound <one>GTP</one>. []
692
+ - <one>Wo</one> spalten <two>Caspasen</two>? <one>Hinter</one> einem <two>Aspartat</two>.
693
+ - <one>Microtubules</one> are nucleated at which end? Their <one>minus (-) end</one>.
694
+ - The <one>cell's library</one> is ... ? <one>DNA</one>. []
695
+ - What are <one>sad cells</one>? <one>Cells in culture that die after some weeks</one>.
696
+ - 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.
697
+ - The <one>outer nuclear membrane</one> is continuous with ... ? the <one>endoplasmic reticulum</one>.
698
+ - Define the term <one>cytosol</one>. A: The <one>cytosol</one> is the organelle-free part of the cytoplasm.
699
+ - Proteine die ins <one>Peroxisom</one> transportiert werden, tragen die Signalsequenz am N-Terminus oder am C-Terminus? Am <one>C-Terminus</one>.
700
+ - Was heisst <one>Tom complex</one>? <one>Translocase of the outer mitochondrial membrane</one>.
701
+ - Was ist die Rolle des <one>Pyruvat Dehydrogenase Complex</one> (<one>PDC</one>) in der Zelle? Dieser mitochondriale Porenkomplex <one>importiert Acetyl-CoA</one>.
702
+ - From the point of view of cellbiology: how can the DNA in a cell be called, in regards to the cell as the focus of the question? DNA is the <b>genomic repository of a cell</b>.
703
+ - In the cytoplasm, hydrolysis of ... to ... causes <one>dissociation of the export complex</one>. A: "Ran-GTP" -> <one>Ran-GDP</one>.
704
+ - In der Biologie, wo finden wir <one>rafts</one>? In der <one>Membran</one> (es sind <two>Membranproteine</two>).
705
+ - Was sind die <one>Elektronenüberträger</one> innerhalb der Zelle? NAD/H + NADP/H.
706
+ - Does <one>organelle DNA</one> replicate even in <two>cells that do not divide</two>? <one>Yes</one>. []
707
+ - Andere Bezeichnung für <one>zwischen den Zellen</one>? <one>Interstitiell</one>. URL: https://flexikon.doccheck.com/de/Interstiti []
708
+ - Ein <one>Lariat</one> hat was für eine Struktur genau? Zirkuläre RNA mit <one>3' OH-Gruppe-</one>.
709
+ - <one>Activated Raf</one> ultimately activates ... ? <one>MAP Kinase</one>.
710
+ - 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.
711
+ - <one>Phospholipase C</one> <two>can activate which pathway</two>? The <one>inositol 1,4,5-trisphosphate pathway</one>.
712
+ - The interiors of cellular compartments communicate with one another via ... ? Via <one>transport vesicles</one>. []
713
+ - <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. What is the other part? An <one>amino group</one> (<one>NH₂</one>).
714
+ - The <one>main phospholipids</one> in most animal cell membranes are ... ? The <one>phosphoglycerides</one>.
715
+ - Can cells pick up other cells through <one>endocytosis</one>? Yes. []
716
+ - <one>Microfilaments</one> in a cell derive from which <three>protein</three>? From <one>actin</one>. URL: https://en.wikipedia.org/wiki/Microfilament []
717
+ - Was wird durch <one>Pinocytose</one> aufgenommen? <one>Flüssigkeiten</one>. []
718
+ - 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.
719
+ - Nenne <one>drei konkrete Funktionen des glatten ERs</one>. A: (1) Synthese von Lipiden (2) Kohlenhydratstoffwechsel (3) Detoxifizierung von Giften
720
+ - <one>When</one> was the structure of the <two>nucleosome core particle</two> solved? In the year <one>1997</one>.
721
+ - <one>Which hormone</one> causes <two>apoptotic loss of the tail in frogs</two>? The <one>thyroid hormone</one>. []
722
+ - The <one>Coatomer</one> consists of <two>how many different coat ("COP")-proteins</two>? <one>7</one>. URL: https://en.wikipedia.org/wiki/Coatomer []
723
+ - <one>Inter-organellar connections</one> depend on ... which act as tethers to bridge the respective organelle membranes. A: interacting proteins.
724
+ - Der Farbstoff <one>Hämatoxylin</one> färbt was genau innerhalb einer Zelle an? Den <one>Zellkern</one>.
725
+ - Wie messen wir die <one>Funktion eines Ionenkanals</one>? Mit Hilfe der <one>patch clamp</one> Technik. []
726
+ - A <one>transport vesicles</one> in general carries ... ? <one>Cargo</one>. []
727
+ - What means <one>dynamic instability</one> in <two>microtubules</two>? That microtubules undergo phases of growth and shrinkage.
728
+ - Microscopy is very important in cell biology. We can see the <one>refractive index</one> here. If we see a value such as 1.33, which is indicative of water, what does this mean? That <one>light travels 1.33 times slower in water than it does in a vacuum</one>.
729
+ - 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) []
730
+ - 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.
731
+ - Give an example for <one>a monomeric GTPase</one>. A: The <one>Ras-proteins</one>. URL: https://en.wikipedia.org/wiki/Ras_GTPase []
732
+ - Give another name for the <one>G0-phase</one>. A: <one>Resting state</one>.
733
+ - What is <one>Transcytosis</one>? Transcytosis is the process by which various macromolecules are transported across / through the interior of a cell.
734
+ - 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.
735
+ - <one>Durchmesser einer Kernpore</one>, <two>in nm</two>? Etwa <one>120 nm</one>.
736
+ - Give another name for <one>photoreceptors</one>. A: <one>Molecular light switches</one>.
737
+ - Was bedeutet der Name bei der <one>I-cell disease</one>? <one>Inclusion-cell disease</one>.
738
+ - <one>Kompartimente</one> erfordern ...? Proteinsortierung.
739
+ - What is <one>ferroptosis</one>? <one>Ferroptosis</one> is <two>a type of programmed cell death dependent on iron</two>.
740
+ - What is the <one>transitional ER</one>? These are areas of smooth ER that bud off for transport to the Golgi apparatus.
741
+ - Andere Bezeichnung für den <one>Golgi-Komplex</one>. A: <one>Sortierungszentrum</one>.
742
+ - How do we call the vesicles derived from the <one>endoplasmic reticulum</one>? <one>Microsomes</one>. URL: https://en.wikipedia.org/wiki/Microsome []
743
+ - Name <one>an important, extracellular matrix protein</one>. A: <one>Fibronectin</one>.
744
+ - Warum sind <one>vesicles</one> für die Zelle so wichtig? Weil sie damit Moleküle zwischen Organellen und dem Aussenmilieu verschicken kann.
745
+ - 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
746
+ - Name one <one>microtubule severing protein</one>. A: <one>Katanin</one>. It is named after the japanese sword katana. URL: URL: https://en.wikipedia.org/wiki/Katanin []
747
+ - <one>Welche Hypothese</one> konnte durch <two>Louis Pasteur</two> widerlegt werden? Die <one>Spontanzeugungshypothese</one>.
748
+ - <one>Welche Aufgabe</one> hat die <one>kontraktile Vakuole</one>? Überschüssiges Wasser wird über die kontraktile Vakuole aus der Zelle gepumpt. []
749
+ - Name a common (functional) feature of <one>karyopherins</one>. A: <one>Karyopherins</one> interact with <two>Ran proteins</two>.
750
+ - In cell biology: the <one>ARF-GAP1</one> can do what? ARF-GAP1 <one>can sense membrane curvature</one>. []
751
+ - Was sind <one>MDCK Zellen</one>? <one>Madin-Darby canine kidney cells</one>.
752
+ - Give another word/term for the <one>centrosome</one>. A: <one>Microtubule organizing center</one>. URL: https://en.wikipedia.org/wiki/Microtubule_organizing_center []
753
+ - Was ist ein <one>RNA-Thermosensor</one>? Dies bezeichnet eine RNA, die mittels Veränderung ihrer Sekundärstruktur Temperatur "messen" kann.
754
+ - <one>Dynamin</one> uses which energy source? <one>GTP</one>. URL: https://en.wikipedia.org/wiki/Dynamin []
755
+ - In which stage of the cell cycle can we readily mark a cell with <one>radioactive thymidine</one>? In the <one>S phase</one>. []
756
+ - <one>Caspases</one> cleave the target proteins at? At a specific <one>aspartic acid</one>. URL: https://en.wikipedia.org/wiki/Caspase []
757
+ - Wie werden die <one>drei Stapel</one> im Golgi-Apparat genannt? (1) <one>cis</one> (2) <one>medial</one> (3) <one>trans</one>
758
+ - What is the <one>intracellular signal</one> that triggers macroautophagy? The intracellular levels of particular amino acids.
759
+ - Das Medikament <one>Eribulin</one> bindet woran? An das <one>+Ende wachsender Mikrotubuli</one>.
760
+ - 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.
761
+ - <one>Diacylglycerol</one> wird als Ausgangssubstanz für welches Phospholipid benötigt? <one>Phosphatidylcholin</one>. URL: https://de.wikipedia.org/wiki/Lecithine []
762
+ - 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>.
763
+ - <one>Receptor-mediated endocytosis</one> is initiated how? When a specific ligand binds to receptors that are present on the cell surface.
764
+ - Do <one>growth factors</one> also belong to the group of <two>cytokines</two>? Yes. URL: https://en.wikipedia.org/wiki/Growth_factor []
765
+ - Um auf ein <one>Hormon</one> reagieren zu können, brauchen die Zellen ... ? einen <one>Rezeptor</one>. []
766
+ - Name the 3 Ras Proteins in humans. A: (1) H-Ras (2) K-Ras (3) N-Ras []
767
+ - 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.
768
+ - In der Zellbiologie: wofür steht die Abkürzung <one>NA Wert</one>? <one>Numerical Aperture</one>.
769
+ - Die <one>Phospholipid-Synthese</one> erfolgt wo in der Zelle? An <one>der cytosolischen Seite der glatten ER-Membran</one>.
770
+ - How do we call the <one>heterotrimeric G-protein of Rhodopsin</one>? <one>Transducin</one>. URL: https://en.wikipedia.org/wiki/Transducin
771
+ - Was heisst <one>Tor-Kinase</one>? <one>Target of Rapamycin</one>. []
772
+ - <one>pH Wert</one> in einem <two>Lysosome</two>? <one>5</one>. []
773
+ - The <one>fluid mosaic model</one> includes, obviously, the word <two>mosaic</two>. What should this word indicate? That this model refers to the presence of proteins suspended in the membrane bilayer.
774
+ - Nenne einen Marker in <one>smooth muscle cells</one>. A: <one>Calponin</one>.
775
+ - Wenn <one>eine Zellmembran nur bestimmte Ionen durchlässt</one>, <two>wie nennen wir dieses Phänomen</two>? <one>Selektive Permeabilität</one>.
776
+ - In der Zellbiologie: was heisst <one>ERGIC</one>? <one>ER-Golgi intermediate compartment</one>.
777
+ - <one>5-Methylcytosin</one> ist methyliert, und kann über eine Oxidation in welche 3 anderen Nukleotide konvertiert werden? (1) 5-Hydroxymethylcytosin (hmC) (2) <one>5'-Formylcytosin</one> (<two>fC</two>) (3) <one>5'-Carboxycytosin</one> (<two>caC</two>)
778
+ - What is the major task of the <one>cis-Golgi network</one>? The cis-Golgi network receives the biosynthetic output from the ER.
779
+ - <one>How</one> is the pH of Lysosomes maintained? By the <one>vacuolar adenosine triphosphatase proton pump</one>.
780
+ - How many <one>NPCs</one> does <two>a typical mammalian cell</two> have (from-to)? <one>3000-4000 NPCs</one>. []
781
+ - <one>Welches Signalpeptid</one> wird nicht abgespalten? Das <one>Kernlokalisationssignal</one>.
782
+ - Welches <one>Phospholipid</one> trägt eine negative Ladung nach aussen hin? <one>Phosphatidylserin</one>. URL: https://de.wikipedia.org/wiki/Phosphatidylserin []
783
+ - 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".
784
+ - <one>Calmodulin</one> besitzt <two>n Ca²⁺ binding sites</two>? <one>4</one>. URL: https://en.wikipedia.org/wiki/Calmodulin []
785
+ - What is <one>Pyknosis</one>? This is <one>the irreversible condensation of chromatin in the nucleus of a cell undergoing necrosis or apoptosis</one>.
786
+ - Name <one>one important receptor</one> that is degraded within lysosomes. A: <one>EGFR Receptor</one> (this is a safety mechanism).
787
+ - 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. []
788
+ - 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 []
789
+ - <one>Welches Protein</one> erreicht eine <two>Abschnürung von Vesikeln</two>? <one>Dynamin</one>. URL: https://de.wikipedia.org/wiki/Dynamine []
790
+ - <one>Wann</one> wurde <two>NLS</two> entdeckt und wo findet man sie? <one>1982 entdeckt</one>; am C-Terminus befindlich. Sie kann jedoch auch an anderer Stelle der Peptidkette auftauchen.
791
+ - <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 []
792
+ - Name something in cell biology that has a <one>triskelion structure</one>. A: <one>Clathrin</one>. URL: https://en.wikipedia.org/wiki/Clathrin []
793
+ - Welche Aufgabe hat der <one>ComEC Complex</one>? Der ComEC Komplex macht einen Channel (wichtig für die Kompetenz).
794
+ - Das <one>raue endoplasmatische Reticulum</one> verdankt seine Bezeichnung ... ? Den vielen <one>Ribosomen</one>. []
795
+ - Andere Bezeichnung für <one>Zellkörper</one>? <one>Perikaryon</one>.
796
+ - <one>Fibrinogen</one> kann vor allem an die Rezeptoren welcher Zellen binden? An die <one>Thrombozyten</one>.
797
+ - Zellbiologisch heraus betrachtet: wieso hat <one>Koffein</one> eine <two>stimulierende Wirkung</two>? Es <one>hemmt die Phosphodiesterase</one>, und bedingt dadurch einen langsameren Abbau von cAMP.
798
+ - What do we mean with <one>Tyr-P</one>? This is <one>a phosphorylated tyrosine</one>. URL: https://en.wikipedia.org/wiki/Tyrosine []
799
+ - Was produziert die <one>Phosphodiesterase</one>? <one>AMP</one>.
800
+ - In der Zellbiologie: was genau heisst <one>Caspase</one>? <one>Cysteinyl-aspartat-spezifische Proteinase</one>.
801
+ - What is a <one>chromocyte</one>? A chromocyte is any cell that contains a pigment, especially red blood cells. URL: https://en.wiktionary.org/wiki/chromocyte
802
+ - In cell biology: what does <one>FAOS</one> stand for? <one>Fluorescence-assisted organelle sorting</one>.
803
+ - Nenne die fünf Phasen der <one>Meiose I</one> 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> []
804
+ - In cellbiology: what is an <one>organotypic culture</one>? This is the case when we grow cells in a "three-dimensional (3-D) environment".
805
+ - Bis etwa 1970 wurde in der Cytologie das <one>Feulgen reagent</one> verwendet. Welche Farbe hat dies? Ein <crimson>dunkles rot</crimson>. []
806
+ - Gehören die <one>Lysosomen</one> zum <two>Endomembransystem</two>? <one>Ja</one>. []
807
+ - <one>Microfilaments</one> are formed by ... ? <one>Actin</one>.
808
+ - <one>When</one> was the <two>nucleosome</two> discovered? In the year <one>1974</one>.
809
+ - Nenne eine besondere Domäne am <one>EGF-Rezeptor</one>. A: Die <one>Dimerisierungsdomäne</one>.
810
+ - Die <one>Fluidität der Plasmamembran</one> ist geringer als die in der intrazellulären Membran auf Grund des hohen Gehalts an ... ? <one>Cholesterin</one>. []
811
+ - Was heisst <one>iPS</one>? <one>Induzierte, pluripotente Stammzellen</one>. []
812
+ - Name a complex similar to the <one>Gamma-TuRC complex</one>. A: The <one>ARP complex</one>.
813
+ - Give another name for the term <one>autophagy</one>. A: <one>Organelle turnover</one>. URL: https://en.wikipedia.org/wiki/Organelle []
814
+ - Within a <one>monolayer</one>, <two>where</two> can we find Cholesterol? <one>Cholesterol</one> is preferentially localized to the upper region of the monolayer because the hydroxyl-group prefers an aqueous environment.
815
+ - Was ist ein <one>Gewebe</one>? Dies ist <one>ein Verbund von Zellen mit gemeinsamer Funktion</one>.
816
+ - Nenne ein zelluläres Ereignis, das durch <one>exogene Noxen</one> ausgelöst werden kann. A: Die <one>Nekrose</one>.
817
+ - 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.
818
+ - Was genau ist die <one>Matrix</one> der Mitochondrien? Das ist genau <one>der innerste Teil der Mitochondrien</one>.
819
+ - In der Zellbiologie: was heisst <one>ICAM</one>? <one>Intercellular adhesion molecule</one>. URL: https://en.wikipedia.org/wiki/Intercellular_adhesion_molecule
820
+ - Was heisst <one>EDTA</one> und wozu setzt man es in der Zellbiologie ein? <one>EDTA</one> heisst <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.
821
+ - <one>How much</one> of the ER comprise of <two>newly-synthesized proteins</two>? Only about <one>1%</one>.
822
+ - What is the job of the <one>PIN Proteins</one> in plants? They serve as secondary active transporters in the cell membrane, regulating the influx and efflux of auxins.
823
+ - <one>Below a certain temperature</one>, lipids are in ... which form? They tend to be in a <one>paracrystalline</one> form. []
824
+ - Name one general way to inhibit translation. A: <one>Make use of a microRNA</one>.
825
+ - <one>Inositol</one> besitzt <two>n OH-Gruppen</two>? <one>6</one>. URL: https://en.wikipedia.org/wiki/Inositol []
826
+ - <one>Wo</one> findet man die <two>tSNAREs</two>? Auf der <one>Zielorganelle</one>. []
827
+ - <one>G-Proteine</one> bestehen aus drei Untereinheiten. Welche davon bindet GTP? Die <one>alpha-Untereinheit</one> bindet (und hydrolysiert) GTP. []
828
+ - Aufgabe der <one>Calpaine</one>? <one>Calpaine</one> <two>bauen Muskeleiweiß ab</two>. URL: https://en.wikipedia.org/wiki/Calpain
829
+ - 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.
830
+ - What is <one>the central component of the translocon</one>? The <one>Sec61 complex</one>.
831
+ - Wie erfolgt <one>der Import von NLS-haltigen Proteinen</one>? Durch <one>Importin Alpha</one> und <one>Importin Beta</one>.
832
+ - Are <one>Endosomes</one> organelles? Yes. []
833
+ - <one>How</one> is the <two>Ras signal-transduction pathway</two> activated? When e. g. EGF binds to a receptor.
834
+ - To which family do the "death receptors" belong to? <one>TNF receptor family</one>.
835
+ - Name <one>a potent inhibitor of autophagy</one>. A: <one>Amino Acids</one>.
836
+ - Give another, prettier name for <one>pigments</one>. A: <one>Rainbow catchers</one>.
837
+ - Woraus besteht <one>ein einzelnes Tubulin-Molekül</one>? Es handelt sich hierbei um ein <one>Heterodimer</one>, bestehend aus <two>Alpha</two> und <two>Beta-Tubulin</two>. []
838
+ - <one>Where</one> does the <two>signal peptidase</two> reside? In the <one>ER membrane</one>.
839
+ - What is a <one>Ionophore</one>? This is a lipid-soluble molecule usually synthesized by microorganisms, able to transport ions across the lipid bilayer of the cell membrane.
840
+ - Name one <one>lysosomal storage disease</one>. A: The <one>Tay Sachs disease</one>. []
841
+ - Is it easy <one>to stretch a membrane</one>? No. []
842
+ - In der Zellbiologie gibt es ein sehr wichtiges, dimeres (genauer: heterodimeres) Protein namens <one>MPF</one>. Was heisst <one>MPF</one>? Maturation-promoting factor. Manchmal wird es aber auch <one>mitosis-promoting factor</one> bezeichnet.
843
+ - <one>Griseofulvin</one> wirkt wie? Griseofulvin hemmt den Spindelapparat der Zelle, indem es an Tubulin bindet.
844
+ - <one>Welche Zellen</one> bilden die <two>Myelinschicht</two>? Die <one>Gliazellen</one>. []
845
+ - Wie werden die <one>Intermediärfilamente in Nervenzellen</one> genannt? <one>Neurofilamente</one>. URL: https://de.wikipedia.org/wiki/Intermediärfilamente#Typen
846
+ - The <one>Nuclear pore complexes</one> consist of about <two>n different proteins</two>? About <one>30</one>.
847
+ - Wie werden die <one>Intermediärfilamente im Zellkern</one> genannt? <one>Lamina</one>. []
848
+ - Nenne die zwei <one>Ionenkanaltypen</one>. A: (1) <one>spannungs-gesteuerte Ionenkanäle</one> (2) <one>liganden-gesteuerte Ionenkanäle</one>
849
+ - Give one example for <one>actin based motor proteins</one>. A: <one>Myosins</one>. []
850
+ - What does a <one>mast cell</one> secrete? <one>Histamine</one>. []
851
+ - Can <one>p53</one> be both <two>acetylated</two> AND <two>phosphorylated</two>, in principle? Yes. []
852
+ - Define <one>transmembrane proteins</one>. A: These are proteins that span the lipid bilayer.
853
+ - <one>COP-Proteine</one> in Vesikeln dienen dem Transport zwischen ...? <one>ER</one> und <one>Golgi</one>.
854
+ - The <one>SCF complex</one> promotes ...? <one>Degradation of CKIs</one>.
855
+ - <one>Integrins</one> have how many <two>switchable conformations</two>? <one>2</one> (active/inactive conformation). []
856
+ - Warum haben <one>Integrine</one> ihren Namen? Sie haben die Fähigkeit, extrinsische Signale in Veränderungen des Cytoskeletts der betreffenden Zelle zu "integrieren".
857
+ - What are <one>ameloblasts</one>? These are cells that are important for tooth development. They <one>deposit tooth enamel</one>.
858
+ - How is the <one>interior of the ER</one> called? <one>lumen</one>.
859
+ - Durchmesser eines <one>clathrin triskelion polyhedral lattice</one>? <one>80nm</one>. []
860
+ - Wo befinden sich <one>vSNARE Proteine</one>? Sie befinden sich <one>in der Vesikelmembran</one>.
861
+ - 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. []
862
+ - <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 []
863
+ - Wo speichert eine Zelle <one>Ca2⁺</one>? Im <one>Lumen des endoplasmatischen Reticulums</one>. []
864
+ - The <one>ER</one> cycles between ...? The <one>ER membrane</one> and the <one>cytosol</one>.
865
+ - 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.
866
+ - Name <one>two things</one> that <two>mature mammalian red blood cells</two> lack. A: (1) <one>nucleus</one> (2) <one>cytoplasmic organelles</one>
867
+ - In cell biology: what does "autophagy" ensure or a given normal cell? <one>Autophagy</one> ensures the synthesis, degradation and recycling of cellular components.
868
+ - Warum besitzen <one>Archaea</one> <two>Etherbindungen</two>? Da <one>Esterbindungen</one>, wie in Bacteria und Eukaryoten, unter extremen Bedingungen rasch hydrolysieren würden.
869
+ - The main reaction types of <one>cell synthesis</one> are ... ? <one>Polymerization Reactions</one>.
870
+ - In cellbiology: we may see something called <one>Endo H</one>. What is this? This is the enzyme <one>Endoglycosidase H</one>.
871
+ - 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.
872
+ - <one>Cyclin-dependent kinases</one> are a subclass of ... which family? They belong to the <one>serine</one>/<one>threonine protein kinases</one>.
873
+ - Why is <one>CO₂</one> used for Live Imaging? Because this will yield a buffer (CO2/HCO3-).
874
+ - What is <one>Allotransplantation</one>? When the donor organ comes from a <one>closely related species</one>.
875
+ - Kann das <one>26S-Proteasom</one> im Zellkern gefunden werden? <one>Ja</one>. []
876
+ - Was ist die sogenannte <one>korpuskuläre Absorption</one>? (1) Phagocytose (2) Pinocytose (3) <one>Endocytose</one>
877
+ - Wie wird die <one>PKA</one> (<one>Proteinkinase A</one>) aktiviert? Über <one>cAMP</one>. URL: https://en.wikipedia.org/wiki/Protein_kinase_A []
878
+ - 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.
879
+ - Aufgabe der <one>SUN</one> und <one>KASH</one> Proteine? Sie verbinden den Nucleus und das Cytoplasma durch die Zellkern-Membran.
880
+ - What are <one>primary cultures</one>? These are <one>cultures prepared directly from the tissues of an organism</one>.
881
+ - <one>Vorgänger</one> eines Lysosoms? Ein <one>late endosome</one>.
882
+ - 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.
883
+ - Nenne ein Beispiel für ein kleines Signalmolekül, das eine zelluläre Rolle spielt. A: <one>NO</one> (<two>Stickstoffmonoxid</two>).
884
+ - <one>Microtubules</one> are made of which protein? <one>Tubulin</one>. []
885
+ - Was sind <one>Kinozilien</one>? Das sind <one>Wimpern</one> beim, zum Beispiel, Wimpertierchen.
886
+ - Der <one>Proteingehalt einer bakteriellen Zelle</one> beträgt etwa n Prozent der Trockenmasse (es reicht ein Wert, der innerhalb des Intervalls liegt)? Etwa <one>50-60% der Trockenmasse</one>.
887
+ - <one>Wann</one> sind Chromosomen <two>unsichtbar</two>? In der <one>Interphase</one>. []
888
+ - <one>Portaler Transport</one> innerhalb der Zelle ... ? Durch die <one>Kernporen des Zellkerns</one>.
889
+ - 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.
890
+ - In der Zellbiologie steht die Abkürzung <one>CDK</one> für ... ? <one>Cyclin dependent kinase</one>. []
891
+ - What kind of information can we gain by <one>Endo H Cleavage</one>? Endoglycosidase H can cleave certain oligosaccharide structures. 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.
892
+ - <one>Which enzyme</one> catalyzes the synthesis of cGMP? <one>Guanylate cyclase</one>.
893
+ - Wofür steht der Name <one>P-bodies</one> in der Zellbiologie? <one>Processing bodies</one>. []
894
+ - <one>Cell lines</one> are <two>usually derived from</two> ... ? <one>Tumors</one>. []
895
+ - Das <one>Glykoproteinhormon EPO</one> hat n AA? <one>165</one>.
896
+ - <one>Integrine</one> bestehen aus wievielen Untereinheiten? <one>2</one>; Integrine sind <two>Heterodimere</two>. []
897
+ - How do we call <one>the tethering proteins of the Golgi complex</one>? <one>Golgins</one>.
898
+ - Lassen <one>tight junctions</one> Nährstoffe durch? <one>Nein</one>. []
899
+ - Erlauben <one>Transfersequenzen</one> den gerichteten (= Polarität) Einbau von Proteinen in Membranen? Ja. []
900
+ - <one>Nanodiscs</one> are surrounded by ...? A belt of proteins.
901
+ - <one>Durchmesser eines Nucleosoms</one>? <one>11 nm</one>.
902
+ - <one>Karyopherins</one> are <two>nuclear transport receptors</two> that bind to ... ? <one>Nups</one>.
903
+ - What is the <one>rate-limiting step</one> in the <two>formation of actin filaments</two>? <one>Nucleation</one>. []
904
+ - <one>Nitric oxide</one> can activate what inside of a cell? The <one>Guanylyl cyclase</one>.
905
+ - Chemischer Name für <one>Caffeine</one>? <one>1,3,7-trimethylxanthine</one>.
906
+ - <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
907
+ - <one>Microtubules</one> are organized from ...? <one>Centrosomes</one>.
908
+ - A <one>32 base pair deletion</one> can confer <two>HIV resistance</two>. In which human Gene? <one>CCR5</one>. []
909
+ - What is <one>the main signal</one> for protein delivery into lysosomes? <one>M6P</one> (<two>Mannose 6-phosphate</two>).
910
+ - <one>Mice without p53</one> show what phenomen, in general? They are <one>susceptible to early tumours</one>.
911
+ - In cell biology: what do we mean with the term <one>free ribosome</one>? Ribosomes that are not attached to the RER.
912
+ - Name <one>two ways</one> how a cell culture can become immortalized. A: (1) spontaneously (2) by oncogenes
913
+ - In cellbiology: what are the <one>CAKs</one>? <one>Cdk-activating kinases</one>.
914
+ - How many <one>different types of autophagy</one> can we distinguish? <one>Three</one>. []
915
+ - Das Enzym <one>Thymidylate Synthetase</one> benötigt eine Methyl-Gruppe. Woher stammt diese? Von <one>Tetrahydrofolate</one>.
916
+ - Give another name for <one>cytokinesis</one>. A: <one>Cytoplasmic division</one>.
917
+ - Die Form von Mitochondrien ist unter anderem wovon abhängig? Vom <one>metabolischen Zustand</one>.
918
+ - <one>Dystrophin</one> bindet ... an die Zellmembran von Muskelzellen. A: <one>Actinfilamente</one>.
919
+ - Bei <one>G-Proteinen</one>: ist der Komplex aus GDP + G(alpha,beta,gamma) aktiv? Nein, er ist <one>inaktiv</one>. []
920
+ - What happens to <one>p53</one> upon activation? It will be <one>translocated into the nucleus</one>.
921
+ - What does <one>pinocytosis</one> literally mean? <one>Cellular drinking</one>.
922
+ - Was für ein Typ sind <one>RAB-Proteine</one>? <one>Kleine GTPasen</one>.
923
+ - Wo finden wir <one>Kupffer cells</one>? In der <one>Leber</one>. []
924
+ - <one>Dendritische Zellen</one> - was heisst <two>dendritus</two>? <one>Verzweigt</one>.
925
+ - Nenne eine Möglichkeit wie man den Zeitpunkt der <one>S-Phase</one> experimentell bestimmen kann. A: Durch Verwendung von <one>Bromodeoxyuridin</one>.
926
+ - <one>Which COP protein</one>, COP I or COP II, functions in <two>intra-Golgi trafficking</two>? <one>COP I</one>.
927
+ - <one>Plectin</one> can bind to ... ? <one>Desmin</one>.
928
+ - <one>Macroautophagy</one> creates what? An <one>autophagic vacuole</one>.
929
+ - 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>.
930
+ - Andere Bezeichnung für die <one>Vakuolenmembran</one>? <one>Tonoplast</one>. URL: https://de.wikipedia.org/wiki/Tonoplast []
931
+ - <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.
932
+ - <one>Formine</one> können die <two>Polymerisation von</two> ... induzieren. A: <one>Aktin</one>.
933
+ - 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>).
934
+ - Why is it important that the <one>ER</one> (<one>endoplasmic reticulum</one>) has a large surface area? This helps in <one>biochemical synthesis</one>.
935
+ - What is the <one>opposite</one> of the secretory pathway? The <one>endocytic pathway</one>.
936
+ - Give another name for <one>Ubiquitin E1</one>. A: <one>Ubiquitin-activating enzyme</one>.
937
+ - Wie weit sind <one>die Membranen des Zellkerns</one> voneinander entfernt (von, bis)? <one>10-50 nm</one>.
938
+ - 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".
939
+ - The only <one>direct intercellular junctions</one> that exist in plants are ... ? <one>Plasmodesmata</one>. []
940
+ - In cellbiology: what means the word <one>ERES</one>? <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
941
+ - For <three>autophagy</three> to properly function, which <one>organelle</one> is the most important? The <one>lysosome</one>. []
942
+ - <one>Integrins</one> can, on the outside of a cell, bind to ... ? <one>Fibronectin</one>.
943
+ - Was meinen wir mit einer <one>asymmetrischen Zellteilung</one>? Dies ist schlicht eine Zellteilung, bei der die beiden Tochterzellen unterschiedlich groß sind.
944
+ - Was ist die Grundlage eines <one>Riboswitch</one>? Wirkt wie ein <one>Schalter</one> - einmal kann er abgelesen werden, ein anderes mal nicht.
945
+ - Why do the <one>osteoclasts</one> need <three>acid</three>? In order to <one>dissolve the bone minerals</one>. []
946
+ - In der Zellbiologie: was meinen wir mit dem Begriff <one>Heterophagie</one>? Dies ist <one>das Verdauen zellfremder Substanzen</one>.
947
+ - What was the first <one>membrane transport protein</one> whose structure was determined? <one>Bacteriorhodopsin</one>.
948
+ - 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>.
949
+ - Der <one>Austausch von Ionen im ladungsneutralen Gegenstrom</one> heißt ... ? <one>Antiport</one>. []
950
+ - Wo finden wir die <one>Cathepsine</one>? Im <one>Lysosom</one>. []
951
+ - Warum das <three>g</three> in <one>G1-Phase</one>? <one>g</one> steht hier für <one>gap</one>. []
952
+ - In cell biology: whats means <one>dynamic instability</one>? This refers to the coexistence of assembly and disassembly at the + end of a microtubule.
953
+ - Der Durchmesser eines <one>Histon-Oktamers</one> beträgt ... ? <one>11 nm</one>. []
954
+ - Name <one>a protein that requires a large vesicle for its transport</one>. A: <one>Collagen</one>.
955
+ - Nenne einen <one>Inhibitor der Phosphodiesterase</one>. A: <one>Koffein</one>. URL: https://de.wikipedia.org/wiki/Coffein []
956
+ - 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.
957
+ - In der Zellbiologie: was heisst <one>ERAD</one>? <one>ER-associated degradation</one>. URL: https://en.wikipedia.org/wiki/Endoplasmic-reticulum-associated_protein_degradation
958
+ - How do we call an <one>inactive caspase</one>? <one>Procaspase</one>. []
959
+ - In der Zellbiologie, gib ein anderes Wort an für das <one>KDEL Signal</one>, auf Englisch. A: <one>ER retention sequence</one>. []
960
+ - In <one>cell biology</one>: give another expression for <two>reversable cell cycle arrest</two>. A: <one>Quiescence</one>.
961
+ - <one>Multicellularity</one> is in general a successful strategy, but there is at the least one major drawback when compared to unicellularity. Which one is that? It takes longer before <one>reproduction</one> can occur.
962
+ - <one>Collagen fibrils</one> are ropes with tunable ... ? <one>Stiffness</one>.
963
+ - 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.
964
+ - Is it possible to detect a small object below the resolution limit, in light microscopy? Yes, if said object itself emits light.
965
+ - Das <one>ced-4 Genprodukt</one> aktiviert welches andere Protein? Die <one>ced-3 Caspase</one>.
966
+ - In multicellular, eukaryotic cells, 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
967
+ - <one>Prenylation</one> is what? The linkage of C15/C20 units to <one>cysteine side chains</one>.
968
+ - <one>Mikrotubuli</one> sind am Centrosom + oder -? <one>-</one>
969
+ - 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).
970
+ - Name a dangerous but very effective way to stop all cell division. A: <one>High exposure to x-rays</one>.
971
+ - 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.
972
+ - 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.
973
+ - Die <one>RNA Helicasen</one> können im zellulären Kontext was machen? Sie können "RNA binding proteins" von der RNA lösen.
974
+ - Within the cell, the so-called FG repeats are associated with ... ? <one>Karyopherins</one>.
975
+ - Do <one>gap junctions</one> allow passage? Yes; of <one>small water-soluble molecules</one>.
976
+ - How do we call the "specialized domain" in cell membranes? <one>Lipid rafts</one>.
977
+ - Why the Z in <one>FtsZ</one>? Because it will build the Z ring at the site where the septum forms.
978
+ - Das <one>BiP Protein</one> ähnelt welch anderem Protein? <one>Hsp70</one>.
979
+ - Innerhalb einer Zelle schaffen Membranen ...? <one>Abgegrenzte Reaktionsräume</one>.
980
+ - Wieso schaffen es <one>Lysosomen</one> einen niedrigeren pH-Wert als ihre Umgebung zu halten? Sie besitzen eine <one>Protonenpumpe der Klasse V</one>, die unter ATP-Verbrauch Protonen in den Lysosomen anreichert.
981
+ - What is the net effect of "mitosis without cytokinesis"? <one>Cells with multiple nuclei</one> will be the result.
982
+ - What is <one>the most remarkable ER specialization</one>? The <one>rough ER</one>.
983
+ - <one>Selenocystein</one> ist was genau? Ein <one>Cystein</one>, bei dem die Schwefelgruppe durch ein reaktiveres Selenium-Atom ausgetauscht wurde.
984
+ - Name a way how to detect cells in the S-phase. A: For instance, via <one>BrdU Incorporation</one>.
985
+ - Was ist zum <one>Zellkern von Osteoklasten</one> zu sagen? Diese Zellen sind <one>mehrkernig</one>.
986
+ - Why is <one>Cholesterol</one> preferentially localized to the upper region of a monolayer? Because the hydroxyl-group prefers an aqueous environment.
987
+ - Proteins that permanently reside in the lumen of the endoplasmic reticulum (ER) seem to be distinguished from newly synthesized secretory proteins by the presence of the C-terminal sequence ... ? <one>KDEL</one>: Lys-Asp-Glu-Leu.
988
+ - How do we call a fused t-SNARE and v-SNARE? <one>trans-SNARE complex</one>.
989
+ - The <one>Rab GTPase</one> is important for ... ? <one>Organelle identity</one>.
990
+ - What is the main minus-end directed <one>motor-protein</one> on microtubules? <one>Dynein</one>.
991
+ - Name an "ER stress reaction". A: The "unfolded protein response", <one>UPR</one>.
992
+ - 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.
993
+ - How do we call the two layers of the phospholipid-bilayer? <one>Leaflets</one>. URL: https://en.wikibooks.org/wiki/Structural_Biochemistry/Lipids/Lipid_Bilayer
994
+ - Wieviele Billionen Zellen hat ein adulter Mensch in etwa? <one>37.2 Billionen Zellen</one>.
995
+ - Name the two major roles that <one>autophagy</one> has. A: (1) to remove damaged organelles and macromolecules (2) to recycle amino acids during periods of starvation
996
+ - Bei der "Dynamik von Mikrotubuli/Tubulin" in der Zelle hat "Alpha-Tubulin" 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": "Polymerisierung der Mikrotubuli"
997
+ - In der Zellbiologie binden die MAPs ("Microtubule-associated protein") an Tubulin Subunits. Welche Funktion erfüllt dies? Sie "regulieren damit deren Stabilität" - machen sie also stabiler oder instabiler.
998
+ - Name the four main families of motor proteins in human cells. A: (1) Integrins (2) Immunoglobulins (3) Cadherins (4) Selectins
999
+ - What would happen if we would knock out "lysosomal hydrolases"? Undigested molecules would accumulate in lysososomes, causing the cell to swell and ultimately die.
1000
+ - Name the three most commonly used scaffolds for 3D cultures. A: (1) Agarose (2) Collagen (3) Fibronectin
1001
+ - What is the general role of Gamma-Tubulin? This protein is involved in the nucleation of microtubule growth.
1002
+ - Name 3 important jobs for the ER (Endoplasmatic Reticulum). A: (1) lipid-biosynthesis (2) protein biosynthesis (3) intracellular Ca 2+ store
1003
+ - Proteine die in die Mitochondrien importiert werden sollen, haben was für eine leader sequence? Am N-Terminus 20 oder mehr Aminosäuren.
1004
+ - Was ist die "Glykokalyx"? Die Gesamtheit der Zuckerketten an der extrazellulären Zelloberfläche.
1005
+ - Eine menschliche Pankreaszelle hat wieviele Ribosomen? Einige Millionen.
1006
+ - In der Zellbiologie, was ist das "Retromer"? Das Retromer ist ein Komplex an Proteinen die wichtig sind für die Wiederverwendung von "transmembrane receptors", von Endosomen hin zum trans-Golgi network (TGN).
1007
+ - The GTP bound to Beta-tubulin may be hydrolyzed to GDP shortly after assembly. What is the effect of this? New dimers are added to the Tubulin-Structure.
1008
+ - Which three main pathways are involved in autophagy? (1) Macroautophagy (2) Microautophagy (3) Chaperone-mediate autophagy (CMA)
1009
+ - Wie funktioniert der Import von Proteinen in das Mitochondrium? Mitochondrien haben Rezeptoren, die bestimmte Signalsequenzen binden können.
1010
+ - Gib ein Beispiel für eine Serin/Threoninkinase. A: Proteinkinase A.
1011
+ - Was ist die "H & E Färbung"? Hämatolysin + Eosin.